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.|
perl_function_references.htm
广告