http://qs1969.pair.com?node_id=161181


in reply to Re: split and join
in thread split and join

split takes a pattern (more or less a regular expression, though there are special cases you might want to read up on), not a static string to separate chunks in the input string, and it happens that the '+' character is special, so you just need to escape it like so:
@array = split '\+', 'abc+def'; print "@array";
gives abc def By the way, you might want to provide the actual error message in future if you need assistance, as "chucking a spazz" covers a lot of bases!

--
I'd like to be able to assign to an luser