>>would populate a list with the following values:
What about the square brackets?
>>so that messes up using a comma as the separator for a string tokenizer....
Actually the StringTokenizer doesn't have a separator. Your example would be
StringTokenizer st = new StringTokenizer("\"");
returning
[
,
.
an empty String
]
Main Topics
Browse All Topics





by: objectsPosted on 2006-08-30 at 22:56:52ID: 17426515
sounds like more a job for StreamTokenizer