I'm sure this is easy to do but I'm not getting it. ? All I need to do is parse a string in the middle and take the 2nd half as in select * from table where something = something I need to get from "where" on, isn't StringTokenizer the way to do this ? Thanks
Actually, I thought the same but it seems that a string tokenizer can't parse based on strings (only characters). You pass a string to the constructor but this is treated as a list of delimiters not as a single delimiter. So, short of using a regex package, you could use some of the String methods like so.
Sean [This message has been edited by Sean MacLean (edited June 22, 2001).]