| Author |
Remove Punctuations with regex
|
rakesh sugirtharaj
Ranch Hand
Joined: Dec 16, 2007
Posts: 151
|
|
|
IS there a way to remove punctuations in a String with Regex and Pattern matching?
|
Cheers!
RSR
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32708
|
|
|
Try the replaceAll method with punctuation passed as the first argument.
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 4167
|
|
Read the API for java.util.regex.Pattern. There's a POSIX character class that matches punctuation. Here's a great resource for better understanding of regex: Learn How to Use and Get The Most out of Regular Expressions
|
luck, db
There are no new questions, but there may be new answers.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32708
|
|
|
I like the regular expression trail in the Java� Tutorials.
|
 |
 |
|
|
subject: Remove Punctuations with regex
|
|
|