in reply to Re^2: split() problem
in thread split() problem
"\\*" would work.
The string literal "\\*" results in the string \*.
When used as a regexp, the string \* matches *.
Save yourself a lot of headaches and always use /.../ (or m{...}) with split.
|
|---|