http://qs321.pair.com?node_id=482889


in reply to Surprised by split

The '\' has a special meaning in a double-quoted string. And _also_ a special meaning in a regex. You'll need two of them in order to break through both special meanings.

But the first argument to "split" should be a regex. So don't pass it a string :)

See... now I'm wondering about split qr(\|) and split m/\|/.

--
<http://dave.org.uk>

"The first rule of Perl club is you do not talk about Perl club."
-- Chip Salzenberg