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

Perl lc()函數

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

語法

lc EXPR

lc


定義和用法

返回EXPR一個小寫版本,或如果EXPR被忽略則為$_。

返回值

    EXPR的小寫版本

例子

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

#!/usr/bin/perl

$orig_string = "This is Test and CAPITAL";

$changed_string = lc( $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