Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
Did you remember to escape the backslash? – Mike Daniels Aug 19 '10 at 1:41
1  
Please post your whole regexp. It might have something todo with escaping characters, etc. – polemon Aug 19 '10 at 1:41

1 Answer

Backslashes inside strings need to be quoted in order to work.

For example, the following works fine:

public class testprog {
    public static void main(String args[]) {
        String s = "Hello there";
        System.out.println (s.matches(".*\\s.*"));
    }
}

outputting:

true

If you use a string like "\s", you should get an error along the lines of:

Invalid escape sequence - valid ones are  \b  \t  \n  \f  \r  \"  \'  \\

from your compiler since \s is not a valid escape sequence (for strings, I mean, not regexes).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.