chomp VARIABLE chomp( LIST ) chomp |
删除的最后一个字符EXPR,LIST的每个元素或没有指定值则为 $_ if 。
从EXPR中的字符删除
在列表上下文中,从List中的最后一个元素字符删除
#!/usr/bin/perl $string1 = "This is test"; $retval = chop( $string1 ); #by www.gitbook.net print " Choped String is : $string1\n"; print " Character removed : $retval\n";
这将产生以下结果
Choped String is : This is tes
Number of characters removed : t