|
|
| How can I get java to stop yelling at me for using \s in a regular expression to signify a whitespace? |
| \\s . in java source '\' is an escape sign since you want a string that contains \s you have to escpe the \ |
| I keep getting an error saying that it's not a supported escape sequence Cool thanks. Yeah ironically I used \" to signify a double quote earlier |