Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. gsrz036

    Detecting a space in a string

    You could use a StringTokenizer to do what you want I think. Here is a lift from the javadoc fro StringTokenizer... StringTokenizer st = new StringTokenizer("this is a test"); while (st.hasMoreTokens()) { println(st.nextToken()); } prints the following...

Part and Inventory Search

Back
Top