in reply to Re: Re: Do as I say. Not as I do
in thread Do as I say. Not as I do

Good point, VSarkiss, but when using a different delimiter you have to write
split m|/|; # instead of split |/|;
Or you can say: split "/"; (though " " is, of course, a special case, but for other simple one character (non-metacharacter) splits I like to use quotes :) If you're splitting on literal ".", you can't use "." but you could use "\\." but then I'd just assume use /\./ ...Got all that?