John W. Krahn wrote: > > So, you are saying that: > > split ' '; > > Is the same as: > > split m' '; > > And the same as: > > split / /;
The second and third are the same. The first one, a
single space, is a special case. It splits on whitespace the
same as:
split;
and
split '\s+';
Rob
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
