I read from a lot of webpage (for example: http://www.wellho.net/regex/java.html), they all mentioned that \s could represent any space charactor. But when I use \s in Java, it is not an eligible expression.
Anyone know the reason?
|
I read from a lot of webpage (for example: http://www.wellho.net/regex/java.html), they all mentioned that \s could represent any space charactor. But when I use \s in Java, it is not an eligible expression. Anyone know the reason? |
|||||||||
|
|
Backslashes inside strings need to be quoted in order to work. For example, the following works fine:
outputting:
If you use a string like
from your compiler since |
||||
|
|