所以我试图从日志行中删除嵌入的 \n 而不从命令行中删除每个日志行的 \n 。我已经尝试过这些,它们都将 \n 全部更改为 ~。
cat test1.txt | perl -n -e 's{\n(?!2013)}{~}mg;print' > test1a.fix
perl -n -e 's{\n(?!2013)}{~}mg;print' test1.txt > test1b.fix
都忽略了背后的负面目光。
test1.txt 包含
2013-03-01 12:23:59,1
line2
line3
2013-03-01 12:23:59,4
包含 test1a.fix 和 test1b.fix
2013-03-01 12:23:59,1~line2~ line3~2013-03-01 12:23:59,4
但我想出了使用这个脚本的正则表达式。
#!/usr/bin/perl
use warnings;
use strict;
sub test {
my ($str, $expect) = @_;
my $mod = $str;
$mod =~ s{\n(?!2013)}{~}mg;
print "Expecting '$expect' got '$mod' - ";
print $mod eq $expect ? "passed\n" : "failed\n";
}
test("2013-03-01 12:23:59,line1
line2
line3
2013-03-01 12:23:59,line4", "2013-03-01 12:23:59,line1~line2~ line3
2013-03-01 12:23:59,line4");
它会产生与我想要的匹配的以下输出。
sfager@linux-sz05:~/logs> ./regex_test.pl
Expecting '2013-03-01 12:23:59,line1~line2~ line3
2013-03-01 12:23:59,line4' got '2013-03-01 12:23:59,line1~line2~ line3
2013-03-01 12:23:59,line4' - passed
sfager001@linux-sz05:~/logs>
谁能解释为什么这些工作方式不同以及如何在命令行上完成?