描述
此函数返回 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.|
相关用法
- Perl uc()用法及代码示例
- Perl uc用法及代码示例
- Perl undef用法及代码示例
- Perl utime用法及代码示例
- Perl unshift()用法及代码示例
- Perl use用法及代码示例
- Perl umask用法及代码示例
- Perl untie用法及代码示例
- Perl unpack用法及代码示例
- Perl unlink用法及代码示例
- Perl unshift用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
- Perl exists()用法及代码示例
- Perl split用法及代码示例
注:本文由纯净天空筛选整理自 Perl ucfirst Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。