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

Is there a way to use the patter \p{Punct} in a regex in java, but without the two characters ( and ) ?

share|improve this question

3 Answers

up vote 13 down vote accepted

You should be able to use:

[\p{Punct}&&[^()]]

What this is saying is:

The punct character class except for ( and ).

The ^ character specifies a negative character class. The && is an intersection between the punct class and the custom class for the parenthesis.

Have a look at the Pattern Javadocs for more info.

share|improve this answer
Same exact regex, 4 seconds apart. I like that :P – Matt Ball Jun 8 '11 at 13:50
@Matt, ha, you know it's probably right then I guess. – jjnguy Jun 8 '11 at 13:51

This should work:

[\p{Punct}&&[^()]]

&& is the intersection operator for character classes, so the intersection of \p{Punct} and [^()] is what you're after. See Character Classes.

share|improve this answer

Yes, just use [!"#$%&'*+,-./:;<=>?@[]^_`{|}~]

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.