in reply to How to split a string
Since several people have given the @f = split... answer: why do you want to split a string into each individual character anyway? I ask because there may be an easier way to do this.
If, for example, you only want the 4 character, my $f = substr($s, 4, 1) would work (and is proably easier then $fourthchar = $f[4];, after the split, if that's all you want).
"Cogito cogito ergo cogito sum - I think that I think, therefore I think that I am." Ambrose Bierce
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to split a string
by Red_Dragon (Beadle) on Jan 28, 2005 at 21:58 UTC | |
by kutsu (Priest) on Jan 28, 2005 at 22:22 UTC |