This notebook is a collection of code snippets and technical "how to" instructions.
To split a String into words (tokens) where delimiter is white space...
String delims = "[ ]+";
String[] tokens = someLongString.split(delims);
Now you can look thru the tokens and do comparisons, etc.
No comments:
Post a Comment