in reply to Having difficulties with "split"
Try escaping with /\.\./
HTH :)
Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!
DB<100> split "..", "1..2..3" => ("", "", "", 3) DB<101> split /\.\./, "1..2..3" => (1, 2, 3)
|
|---|