描述
此函数从EXPR,LIST的每个元素或$_(如果未指定值)中删除最后一个字符。
语法
以下是此函数的简单语法-
chop VARIABLE chop( LIST ) chop
返回值
此函数返回从EXPR中删除的字符,并且在列表context中,从LIST的最后一个元素中删除该字符。
例
以下是显示其基本用法的示例代码-
#!/usr/bin/perl $string1="This is test"; $retval =chop( $string1 ); print " Choped String is : $string1\n"; print " Character removed : $retval\n";
执行上述代码后,将产生以下输出-
Choped String is : This is tes Number of characters removed : t
Perl 中的 chop函数 - 无涯教程网无涯教程网提供描述此函数从EXPR,LIST的每个元素或$_(如果未指定值)中删除最后一个字符。 语法以下是...https://www.learnfk.com/perl/perl-chop.html