Perl ucfirst 函数
描述
此函数返回 EXPR 的值,仅第一个字符大写。 如果省略 EXPR,则使用 $_。
语法
以下是此函数的简单语法 −
ucfirst EXPR ucfirst
返回值
此函数返回第一个字符为大写的字符串。
示例
以下是显示其基本用法的示例代码 −
#!/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.|