in reply to Re^2: split() problem
in thread split() problem

"\*" fails, because "" interpolates \*, which results in a bare *.

Watch following:

$ perl -wle 'print "\*"' *

So you actually should, if (see Corion's reply), use '\*'.