Why does this code throw a InputMismatchException ?
Scanner scanner = new Scanner("hello world");
System.out.println(scanner.next("hello\\s*world"));
The same regex matches in http://regexpal.com/ (with \s instead of \\s)
|
Why does this code throw a InputMismatchException ?
The same regex matches in http://regexpal.com/ (with \s instead of \\s) | |||||||||
feedback
|
|
A Scanner, as opposed to a Matcher, has built in tokenization of the string, the default delimiter is white space. So your "hello world" is getting tokenized into "hello" "world" before the match runs. It would be a match if you changed the delimiter before scanning to something not in the string, eg.:
but it seems like really for your case you should just be using a This is an example of using a Scanner "as intended":
output would be
| |||||||||||
feedback
|
|
The default delimiter of a scanner are whitespaces, so the scanner sees two elements hello and world. And hello\s+world is not matching hello therefore a NoSuchElement exception is thrown. | |||
|
feedback
|
|
The constructor of the scanner takes an optional Pattern that is used to split the input sequence into tokens. By default, that's a whitespace pattern. Scanner#next returns the next token, if it matches the given pattern. In other words, the pattern that you pass into #next may not contain whitespace by default. You can invoke #useDelimiter to configure the scanner for your use case. | |||
|
feedback
|
|
These inputs work:
Here's the code:
| |||
|
feedback
|
|
A Scanner has a default delimiter of Alternativeley, you can call As a side note, if you want it to have at least 1 space, you want to use a | |||||
feedback
|