lc EXPR lc |
返回EXPR一个小写版本,或如果EXPR被忽略则为$_。
EXPR的小写版本
试试下面的例子,复制和过去的这个例子test.pl文件,然后对结果进行验证:
#!/usr/bin/perl
$orig_string = "This is Test and CAPITAL";
$changed_string = lc( $orig_string );
print "Changes String is : $changed_string\n";
It will produce following result
#by www.gitbook.net
Changes String is : this is test and capital