in reply to $* is no longer supported
# $* = 1;
Note that it is a warning, not an error. Is your script working as desired on 5.10?
You could check to see if your script still works on 5.8 without $*.
The problem with the $* variable is that it is global. Once set, it will apply to all regular expressions in code executed after it is set. If there are any regexes outside of your posted code, they could be affected, too.
|
|---|