in reply to Re^2: splitting a string on a reqexp
in thread splitting a string on a reqexp

FWIW split ( ), 'a b c' is parsed as split(), 'a b c '. So it's a call to split with no arguments. That call is part of a list, and the string literal is the last part of the list. Certainly not what the OP wants.