Baltz, Kenneth wrote: > I suspect you could do this with regular expressions (java.util.regex.*). > There's a split() method in Pattern that will split a string around > pattern matches, but it looks like this is basically an advanced version > of > StringTokenizer.
Yes, I could use regexp (probably ORO, for jdk1.3), but somehow I think it could be useful to have something like split() with quoted strings in StringUtils. If there is no such a method, I'll probably implement something, using split() methods already provided in StringUtils. Thanks. -- [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
