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

Perl lcfirst()函數

perl lcfirst()函數例子,lcfirst()函數學習例子,lcfirst()函數實例代碼,lcfirst()函數教學等

語法

lcfirst EXPR

lfirstc


定義和用法

返回字符串EXPR或$_第一個字符小寫。

返回值

    第一個字符的小寫格式

例子

試試下麵的例子,複製和過去的這個例子test.pl文件,然後對結果進行驗證:

#!/usr/bin/perl

$orig_string = "This is Test and CAPITAL";

$changed_string = lcfirst( $orig_string );

print "Changes String is : $changed_string\n";

It will produce following result
#by www.gitbook.net

Changes String is : this is Test and CAPITAL