perl的chomp实例 chomp应用到所有数据元素的例子

发布时间:2020-10-02编辑:脚本学堂
分享一个perl代码中使用chomp去除空格的例子,去除数据中所有元素前后的空格。有需要的朋友参考下。

perl chomp的例子。
代码:
 

复制代码 代码示例:

#!usr/bin/perl

use warnings;
use strict;

my @array = ( "Onen", "Twon", "Three", "Four", "Fiven" );

my $newlines = chomp ( @array ); 
print "nWe just removed $newlines newlines from that list!n";
print "nThe list is now @array.";