Python string class has a string property named punctuation, and it contains almost all the punctuation I need to deal with.
It looks like:
import string
print string.punctuation #!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
I wonder whether Java also has this string property, in any classes come with Java?