描述
此函數從 EXPR 中刪除最後一個字符、LIST 中的每個元素或 $_(如果未指定值)。
用法
以下是此函數的簡單語法 -
chop VARIABLE chop( LIST ) chop
返回值
此函數返回從 EXPR 中刪除的字符,在列表上下文中,該字符從 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()用法及代碼示例
- Perl chomp()用法及代碼示例
- Perl chomp用法及代碼示例
- Perl chmod用法及代碼示例
- Perl chr()用法及代碼示例
- Perl chr用法及代碼示例
- Perl crypt用法及代碼示例
- Perl continue用法及代碼示例
- Perl cos()用法及代碼示例
- Perl caller用法及代碼示例
- Perl sin()用法及代碼示例
- Perl abs()用法及代碼示例
注:本文由純淨天空篩選整理自 Perl chop Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。