Perl lc 函数
描述
This function returns a lowercased version of EXPR, or $_ if EXPR is omitted.
语法
以下是此函数的简单语法 −
lc EXPR lc
返回值
This function returns a lowercased version of EXPR, or $_ if EXPR is omitted.
示例
以下是显示其基本用法的示例代码 −
#!/usr/bin/perl $orig_string = "This is Test and CAPITAL"; $changed_string = lc( $orig_string ); print "Changed String is : $changed_string\n";
执行上述代码时,会产生以下结果 −
Changed String is : this is test and capital