Perl lc 函数

  • 描述

    lc此函数返回小写版本的EXPR,如果省略EXPR,则返回$_。
  • 句法

    以下是此函数的简单语法-
    
    lc EXPR
    
    lc
    
  • 返回值

    此函数返回小写版本的EXPR,如果省略EXPR,则返回$_。
  • 示例

    以下是显示其基本用法的示例代码-
     
    $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