描述
该函数返回的EXPR值仅将第一个字符大写。如果省略EXPR,则使用$_。
语法
以下是此函数的简单语法-
ucfirst EXPR ucfirst
返回值
此函数返回第一个字符为大写的String。
例
以下是显示其基本用法的示例代码-
#!/usr/bin/perl -w $string='the cat sat on the mat.'; $u_string=ucfirst($string); print "First String |$string|\n"; print "Second String |$u_string|\n";
执行上述代码后,将产生以下输出-
First String |the cat sat on the mat.| Second String |The cat sat on the mat.|
参考链接
https://www.learnfk.com/perl/perl-ucfirst.html
标签:String,ucfirst,无涯,Perl,EXPR,perl,string,sat From: https://blog.51cto.com/u_14033984/7133769