I have some questions on StringTokenizer.
I used it to break a string that has the format : "string1,string2,string3;string4,string5,string6" first into the two strings:

"string1,string2,string3"
"string4,string5,string6"

and then:

" String a = string1"
"String b = string2"
"String c = string3"

Where a = string4 in the next loop, and = string7 and so on if the loop is continued.
I used two while loops as well as StringTokenizer to carry this out.

However, I am supposed to return one of the tokens (say, string1)
as a string. When I use a return statement "return string1" the loop ends and does not process the remaining tokens (by this I mean that string1 could represent a car name, and string4's position in the string also indicates that it is another car name. When I ask for the car name, it only returns the first one instead of all, to all me to compare them.

Help please?

If you want to see the actual code that I've done I'd prefer to PM it.

Member Avatar for iamthwee

Give me the code to see.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.