2

这是我的文本文件...我想搜索特定数据并存储它... 我想搜索输出需求历史记录然后打印它搜索所有*输出字段并仅保存其值=234 并打印其数据即 abc , dfg, jh,

输入文件:

*output folk
 .....
 ....
 ....
*output demand history
*output integ
sd,
lk,
pk,
*output field, value=234;hoxbay edt
abc,
dfg,
jh,
*output field, value=235;hoxbay edt
jh,
lk,
*output fix, value=555;deedfgh
re,
ds,
*fgh ,val=098;ghfd
dsp=pop
mike oop...


**i want this output only........**

输出:

*output field, value=234;hoxbay edt
abc,
dfg,
jh,
*output field, value=235;hoxbay edt
jh,
lk,
*output fix, value=555;deedfgh
re,
ds,

我试过这个......但我不知道如何停下来

output fix, value=555;deedfgh
re,
ds,

代码:

use strict;
use warnings;
use Data::Dumper;

open(IN , "<" , "a.txt");

my $flag=0;

foreach my $line(<IN>)
{
  if($line=~/^\*output demand history/i)
  {
    print $line;
    $flag=1;

  }

  if($line=~/^\*OUTPUT field/i && $flag==1)
  {
    print $line;
    my @array1=split("," ,$line);
    my $temp1=shift @array1;
    my @array2=split(";",$temp1);
    my $elset=shift @array2;

  } 

  if($line=~/^\*OUTPUT FIX/i && $flag==1)
  {
    print $line;

    my @array3=split("," ,$line);
    my $temp2=shift @array3;
    my @array4=split(";",$temp2);
    my $nset=shift @array4;
  }
}
4

4 回答 4

1

当所有条件都满足时,我看不到您在哪里简单地打印输入的行。

你需要在循环中的某个地方:

if ($flag2) {
   print $line;
}
于 2012-08-04T15:52:10.473 回答
1

很难准确说出您需要什么,但这个程序可能会有所帮助

use strict;
use warnings;

open my $fh, '<', 'a.txt' or die $!;

my @data;
while (<$fh>) {
  chomp;
  if (/^\*/) {
    print "@data\n" if @data;
    @data = ();
    push @data, $1 if /^\*output\s+(?:field|fix),\s*(.+?)\s*;/;
  }
  else {
    push @data, $_ if @data;
  }
}
print "@data\n" if @data;

输出

value=234 abc, dfg, jh,
value=235 jh, lk,
value=555 re, ds,

从您的回复看来,您想要打印以 a 开头*并包含以 a 开头value=的下一行的行*

试试这个代码

use strict;
use warnings;

open my $fh, '<', 'a.txt' or die $!;

my $wanted;
while (<$fh>) {
  $wanted = /value/ if /^\*/;
  print if $wanted;
}

输出

*output field, value=234;hoxbay edt
abc,
dfg,
jh,
*output field, value=235;hoxbay edt
jh,
lk,
*output fix, value=555;deedfgh
re,
ds,
于 2012-08-04T18:00:59.100 回答
1

使用触发器的一个版本:

perl -ne'print if (/^\*output .*value=/ .. ($a = (/^\*/ && ! /value=/))) && ! $a'
于 2012-08-05T07:02:37.363 回答
1

也许这是你想要的:

use 5.010;
$flag;
while (<IN>) {
    given ($_) {
        when (/^\*output/)  { $flag= 0; continue; }
        when (/value/)      { $flag = 1; }
    }
    print if $flag;
}
于 2012-08-04T15:59:41.110 回答