描述
這個更安全的chop版本刪除了與$/(在英語模塊中也稱為$INPUT_RECORD_SEPARATOR)的當前值相對應的任何尾隨字符串。它返回從其所有參數中刪除的字符總數。默認情況下 $/設置為換行符。
用法
以下是此函數的簡單語法 âˆ'
chomp VARIABLE chomp( LIST ) chomp
返回值
此函數返回整數,為所有字符串刪除的字節數。
示例
以下是顯示其基本用法的示例代碼 -
#!/usr/bin/perl
$string1 = "This is test";
$retval = chomp( $string1 );
print " Choped String is:$string1\n";
print " Number of characters removed:$retval\n";
$string1 = "This is test\n";
$retval = chomp( $string1 );
print " Choped String is:$string1\n";
print " Number of characters removed:$retval\n";
當上麵的代碼被執行時,它會產生下麵的結果——
Choped String is:This is test Number of characters removed:0 Choped String is:This is test Number of characters removed:1
相關用法
- Perl chomp()用法及代碼示例
- Perl chop()用法及代碼示例
- Perl chop用法及代碼示例
- Perl chmod用法及代碼示例
- Perl chr()用法及代碼示例
- Perl chr用法及代碼示例
- Perl crypt用法及代碼示例
- Perl continue用法及代碼示例
- Perl cos()用法及代碼示例
- Perl caller用法及代碼示例
- Perl sin()用法及代碼示例
- Perl abs()用法及代碼示例
注:本文由純淨天空篩選整理自 Perl chomp Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。