![]() |
|
Welcome to the Monastery | |
PerlMonks |
Re: HTML::Parser / Regexby Mr. Muskrat (Canon) |
on May 26, 2017 at 21:05 UTC ( #1191323=note: print w/replies, xml ) | Need Help?? |
You are not using strict and warnings. You have loaded HMTL::Parser instead of HTML::Parser but then you do not try to use it. You are trying to search an undefined variable $text. You are trying to use captured values but have not any capture groups. (May not be a problem in your real code but) you are defining a different variable in each part of the if/elsif blocks. The pattern you are using to match the numbers is a bit odd. Take a look at Regexp::Common. You are trying to use regular expressions to search for slashes without changing the "/" delimiters. Regexp quote-like operators.
In Section
Seekers of Perl Wisdom
|
|