in reply to split chars in string
Add codes if missingsplit'[\w|\W]';
my @array; for(0..$#string){ my $i = $_; push @array,substr($string,$1,1); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: split chars in string
by dsheroh (Monsignor) on Nov 23, 2009 at 10:46 UTC | |
|
Re^2: split chars in string
by ikegami (Patriarch) on Nov 23, 2009 at 17:57 UTC |