Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Regular Expression Matching Issue

by Punitha (Priest)
on Jan 03, 2008 at 04:06 UTC ( [id://660119]=note: print w/replies, xml ) Need Help??


in reply to Re: Regular Expression Matching Issue
in thread Regular Expression Matching Issue

I agreed with olus

You can 'join' @test or while reading from the file itself you can read the whole file in single scalar variable using undef as.

open(FH,'<',$new_file) || die $!; do {local undef $/;$test = <FH>}; close(FH); while($test =~ /<!--\s+\d+nd table -->\s*(.*?)\s*<!--\s+\/\d+nd table +-->/sgi){ $out_put = $1; print "$out_put\n"; }

I think this code is matching what did you expected

Punitha

Replies are listed 'Best First'.
Re^3: Regular Expression Matching Issue
by Anonymous Monk on Jan 03, 2008 at 15:08 UTC
    Thanks, it works like that!!!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-04-19 18:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found