我正在阅读此文本文件以仅获取其中的单词并忽略所有类型的空格:
hello
now
do you see this.sadslkd.das,msdlsa but
i hoohoh
这是我的 Perl 代码:
#!usr/bin/perl -w
require 5.004;
open F1, './text.txt';
while ($line = <F1>) {
#print $line;
@arr = split /\s+/, $line;
foreach $w (@arr) {
if ($w !~ /^\s+$/) {
print $w."\n";
}
}
#print @arr;
}
close F1;
这是输出:
hello
now
do
you
see
this.sadslkd.das,msdlsa
but
i
hoohoh
输出显示两个换行符,但我希望输出只是单词。我应该怎么做才能得到单词?