Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: Filehandle problem

by amma (Novice)
on May 07, 2013 at 11:22 UTC ( [id://1032462]=note: print w/replies, xml ) Need Help??


in reply to Re: Filehandle problem
in thread Filehandle problem

Hi, I am storing the value whatever is matched in the if condition in the $required_line variable. The data file is too large of 40k lines.

Replies are listed 'Best First'.
Re^3: Filehandle problem
by Random_Walk (Prior) on May 07, 2013 at 11:28 UTC

    Just a couple of lines of the input demonstrating a match and a fail would help. Try replacing the use of $1 with something other than a special variable, I typically use $line. Then see how you get on.

    Cheers,
    R.

    Pereant, qui ante nos nostra dixerunt!
      ................................. ................................. s_abc_in(1450) <= s_abc_out(324); # this is my first match s_abc_in(1451 <= s_abc_out(1450); .................................

      After the first match , the if condition should execute and place lines of for loop. if it fails the remaining lines of the whole original file should go into the new file. This is my requirement.

        Your main problem is using $1. If you used strictures this would be a fatal error, stopping you treading on your own toes :)

        use strict; use warnings; my $label = 'owt'; while (my $line = <DATA>) { if ($line =~ m/s_abc_in\(\d+\).*\s*<=\s*s_abc_out\(\d+\).*/){ for (1..6){ my $j = $_ + 1; print "a_abc_in\_rrfa_$label($j) <= s_abc_out\_rrfa_$label($_);\ +n"; } } else { print $line; } } __DATA__ ................................. s_abc_in(1450) <= s_abc_out(324); # this is my first match an unmatched line s_abc_in(1451) <= s_abc_out(1450); unmatched line, as are the ...... lines ................................

        Cheers,
        R.

        Pereant, qui ante nos nostra dixerunt!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1032462]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-04-25 03:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found