This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes Parse * delimited string Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Parse * delimited string" Watch "Parse * delimited string" New topic
Author

Parse * delimited string

John Landon
Ranch Hand

Joined: Sep 25, 2008
Posts: 221
Hi,
What is the best way to parse * delimited string. I mean onto an array of strings or something.

Thanks.
Uli Hofstoetter
Ranch Hand

Joined: Nov 24, 2006
Posts: 57
Anything wrong with String.split?


SCEA5, Certified ScrumMaster
John Landon
Ranch Hand

Joined: Sep 25, 2008
Posts: 221
noh tokenizer is the right thing. Thanks though
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32675
    
    4
No, Tokenizer is legacy code. String#split is correct. Remember the * is a metacharacter and needs to be escaped.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Parse * delimited string
 
Similar Threads
Returning array from applet to JavaScript
parsing comma delimited string
Split a String
passing array from processAction to jsp
Suggestions on fastest way to parse a String?