http://www.perlmonks.org?node_id=798298


in reply to RegEx Doubt

my @a = $text =~ m{<xyz>([^<]*)</xyz>}g;
see more:

Replies are listed 'Best First'.
Re^2: RegEx Doubt
by mecrazycoder (Sexton) on Sep 30, 2009 at 12:10 UTC
    Tanx man