Loose-Info.com
Last Update 2008/05/18
TOP - Perl - 関数 - ucfirst

文字列(アルファベット)の先頭の1文字を大文字に変換します。

ucfirst 式1

式1
先頭の文字を変換する文字列を表す式

(例)
print ucfirst("test") . "\n"; # 引数省略時は$_を変換する $_ = "aaa"; print ucfirst() . "\n";

実行結果
Test Aaa