|
Author |
Topic: Quotation mark delimiter (Read 452 times) |
|
xoff
|
Quotation mark delimiter
« on: Jun 26th, 2003, 1:13am » |
|
String zzz = ddd.substring(index); StringTokenizer fff = new StringTokenizer(zzz,"\">#"); hhh = ff.nextToken(); it returns the error: unexpected token: c.... How can i define a quotation mark as a delimiter? thanx
|
||||||||||||||||||||||||| 25% lodead
|
|
|
fry
|
Re: Quotation mark delimiter
« Reply #1 on: Jun 26th, 2003, 4:08am » |
|
i think it's a parser bug (soon to be fixed). try this as a workaround: new StringTokenizer(zzz, ">#" + (char)34);
|
|
|
|
|