in reply to Re: expanding the functionality of split
in thread expanding the functionality of split
is the same asmy @delim = qw(: :: / // \| \|\| \s+); mySplit \@delim, $str1; mySplit \@delim, $str2, 4;
my @delim = qw(: :: / / \| \|\| \s+); mySplit \@delim, $str1; mySplit [ @delim[0..2] ], $str2;
Makeshifts last the longest.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re^2: expanding the functionality of split
by BrowserUk (Patriarch) on Dec 10, 2002 at 15:05 UTC |