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,is,a,test,,', -1);

RTFM: perldoc -f split






--
REMEMBER THE WORLD TRADE CENTER         ---=< WTC 911 >=--
"...ne cede malis"

00000100

_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to