in reply to Re^3: Test RegEx
in thread Test RegEx

Error resolved, thanx. Now I just need to get on top of RegEx's

Replies are listed 'Best First'.
Re^5: Test RegEx
by sierpinski (Chaplain) on Apr 08, 2010 at 19:53 UTC
    One thing that might help, depending on which version of perl you are using, is the 'qr' operator. It works similar to qq or qw, except it works on regular expressions, which is very handy for using RegExs as variables passed in from a function or main arg.

    Hope that helps.