Joe Discenza wrote:
DZ-Jay wrote, on Mon 05-Dec-05 07:58
: I have a problem using the split() function: When there are trailing
: delimiters, without any content between them, split() skips them. For
From "perldoc -f split":
If LIMIT is specified and positive, splits int
DZ-Jay wrote:
Hello:
I have a problem using the split() function: When there are
trailing delimiters, without any content between them, split() skips
them. For example, this:
my @foo = split(/,/, 'this,is,a,test,,');
yields:
this
is
a
test
while I'm expecting:
Title: split() skipping trailing delimiters
DZ-Jay wrote, on Mon
05-Dec-05 07:58
: I have a
problem using the split() function: When there are trailing:
delimiters, without any content between them, split() skips them.
For
From "perldoc -f
split":
If
LIMIT is spe
At 07:58 AM 12/5/2005 -0500, DZ-Jay wrote:
>Hello:
> I have a problem using the split() function: When there are trailing
>delimiters, without any content between them, split() skips them. For
>example, this:
>
> my @foo = split(/,/, 'this,is,a,test,,');
my @foo = split(/,/, 'this,