Matt Posted September 29, 2008 Report Share Posted September 29, 2008 I'm looking for a way to use a scanner object to take a String from input, and not divide tokens with spaces. So when the user enters a string, it will take the whole thing, regardless of spaces. I'd like to accomplish this without the use of regex. name1 = input.next();Edit: let me just add, that it will need to use whitespace as a delimiter also. For example, entering 55 66 new york i'd like to grab 55, 66, and new yorkThanks,Matt Quote Link to post Share on other sites
Matt Posted September 29, 2008 Author Report Share Posted September 29, 2008 never mind, got it:input.nextLine(); Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.