在Perl中怎么删除txt文件中的TAB健
1个回答
展开全部
my $str = read_file($file);
$str =~s/\t//gm;
save_file($file, $str);
sub read_file{
my $f = shift || exit;
open(my $h, $f);
local $/=undef;
$_ = <$h>;
close $h;
$_;
}
sub write_file{
my $f = shift;
open(my $h, "+>", $f);
print $f shift;
close $h;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询