lcfirst EXPR lfirstc |
返回字符串EXPR或$_第一個字符的小寫。
第一個字符的小寫格式
試試下麵的例子,複製和過去的這個例子test.pl文件,然後對結果進行驗證:
#!/usr/bin/perl
$orig_string = "This is Test and CAPITAL";
$changed_string = lcfirst( $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