in reply to Regular expression

You're not using a good regex (see URI, Regex::Common::URI, URI::Find). You're not capturing your matches (my @matches = $data =~ ...;)

Replies are listed 'Best First'.
Re^2: Regular expression
by Anonymous Monk on Aug 07, 2009 at 15:46 UTC
    Using @data = $data =~ //gsi worked Thank you.