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

Perl chop()函數

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

語法

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