perl解析报文,每3行输出到1行,怎么实现
例如
a1
a2
a3
b1
b2
b3
c1
c2
c3
结果
a1a2a3
b1b2b3
c1c2c3
perl解析报文,每3行输出到1行,怎么实现 例如 a1 a2 a3 b1 b2 b3 c1 c2
答案:2 悬赏:40 手机版
解决时间 2021-03-08 23:50
- 提问者网友:疯孩纸
- 2021-03-08 02:11
最佳答案
- 五星知识达人网友:痴妹与他
- 2021-03-08 03:00
用sed
cat test_baidu
a1
a2
a3
b1
b2
b3
c1
c2
c3
sed -e 'N;N;s/\n//g' test_baidu
用perl (perl 水平很烂 现学的)
open('WCD','
my $num = 1;
my $str = '';
while()
{
chomp($_);
$str .= $_;
if ($num % 3 == 0) {
print $str."\n";
$str = '';
$num=0;
}
$num++;
}
cat test_baidu
a1
a2
a3
b1
b2
b3
c1
c2
c3
sed -e 'N;N;s/\n//g' test_baidu
用perl (perl 水平很烂 现学的)
open('WCD','
my $str = '';
while(
{
chomp($_);
$str .= $_;
if ($num % 3 == 0) {
print $str."\n";
$str = '';
$num=0;
}
$num++;
}
全部回答
- 1楼网友:千杯敬自由
- 2021-03-08 03:44
这样就可以:
open(fd,'1.txt');
while($s1=){
$s2=;
$s3=;
chomp($s1);
chomp($s2);
print "$s1$s2$s3";
}
close(fd);
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯