我需要在Perl中创建一个子程序,它确定一个字符串是否以大写字符开头.到目前为止我所拥有的是以下内容:
sub checkCase { if ($_[0] =~ /^[A-Z]/) { return 1; } else { return 0; } } $result1 = $checkCase("Hello"); $result2 = $checkCase("world");
解决方法
这几乎是正确的.但是[A-Z]可能与大写重音字符不匹配,具体取决于您的语言环境.最好使用/ ^ [[:upper:]] /.
你的子程序调用也不应该在它们前面有$字符.即他们应该是:
$result1 = checkCase("Hello"); $result2 = checkCase("world");