in reply to Having difficulties with "split"

Split takes a regex (not a string) as first argument and . is a meta character in regexes.

Try escaping with /\.\./

HTH :)

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!

update
DB<100> split "..", "1..2..3" => ("", "", "", 3) DB<101> split /\.\./, "1..2..3" => (1, 2, 3)