in reply to Re: split() problemin thread split() problem
Watch following:
$ perl -wle 'print "\*"' * [download]
"\\*" 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.