aspose file tools
The moose likes Servlets and the fly likes Alternative to StringTokenizer Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Alternative to StringTokenizer " Watch "Alternative to StringTokenizer " New topic
Author

Alternative to StringTokenizer

Bhushan Shete
Greenhorn

Joined: Mar 20, 2001
Posts: 9
Is there any alternative ( other than substring ) that can be used instead of StringTokenizer ???
Actually, I am facing a problem with StringTokenizer. If I have a string with a character '=' in it, then the following code results in false tokens :
StringTokenizer valToken = new StringTokenizer(val,"==>");
while(valToken.hasMoreTokens())
{
valno = valToken.nextToken();
valdate= valToken.nextToken();
}

Frank Carver
Sheriff

Joined: Jan 07, 1999
Posts: 6919
This is not really a servlets and JSP question, so I've moved it to Java in General (intermediate)


Read about me at frankcarver.me ~ Raspberry Alpha Omega ~ Frank's Punchbarrel Blog
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Alternative to StringTokenizer
 
Similar Threads
Alternative to StringTokenizer
Alternative to StringTokenizer
StringTokenizer Question?
please clarify this.
Reading from String