- 论坛徽章:
- 307
|
本帖最后由 sunzhiguolu 于 2016-05-19 16:33 编辑
回复 5# little_joe
不好意思, 考虑的较少. 试下这个,
perl abc.pl a b>ab- #!/usr/bin/perl
- use strict;
- use warnings;
- my ($sID, $sBegin, $sEnd, %hData);
- while (<>){
- s/\A\s+|\s+\z//g;
- if (@ARGV){
- if (m/\A>/){
- $sID = $_;
- next;
- }
- push (@{$hData{$sID}[0]}, $_);
- next;
- }
- next if (!m/\A>/);
- ($sID, $sBegin, $sEnd) = split;
- push (@{$hData{$sID}[1]}, $sBegin, $sEnd) if (exists $hData{$sID});
- }
- foreach $sID (sort grep {$#{$hData{$_}}} keys %hData){
- ($sBegin, $sEnd) = @{$hData{$sID}[-1]};
- if ($sBegin <= $hData{$sID}[0][0] and $sEnd >= $hData{$sID}[0][0]){
- local $, = $/;
- print $sID, grep {$_ >= $sBegin and $_ <= $sEnd} @{$hData{$sID}[0]};
- print "\n";
- }
- }
复制代码 |
评分
-
查看全部评分
|