http://qs321.pair.com?node_id=660119


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!!!