in reply to split but not consumed
Using "foo" instead of foo seems to create the false impression that split will work with either a regular expression or an exact string. Then you see things like split ".", which should really be split /\./.
Split only takes a regex (with the confusing exception of " "), so show it that way.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: split but not consumed
by davido (Cardinal) on Jul 23, 2004 at 07:23 UTC |