當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl chop用法及代碼示例



描述

此函數從 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 Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。