當前位置:首頁 » Perl » perl ucfirst()函數

perl ucfirst()函數

perl ucfirst()函數例子,ucfirst()函數實例代碼 - 返回EXPR值的第一個字符大寫。

語法

ucfirst EXPR

ucfirst


定義和用法

返回EXPR值的第一個字符大寫。 如果EXPR 冇有指定, 那麼使用$_

返回值

  • 字符串中第一個字符大寫。

例子

#!/usr/bin/perl -w
#by www.gitbook.net

$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.|