in reply to Re^4: Use of uninitialized value in pattern match (m//)
in thread Use of uninitialized value in pattern match (m//)
/(7722/|59001/)/
If the slash is used as the delimiter, you can't use it as literal, you have to backslash it. Or, switch to a different delimiter:
/(7722\/|59001\/)/ # or better: m=(7722/|59001/)=
|
---|