Having syntax trouble, I'm new to using regex. I'm coding in java.
I need to check if an apostrophe is used more than once in a string. Multiple apostrophes can either be consecutive or spread out over the string.
For example: Doesn't'work
or Can''t
I have an if
statement, and I want it to evaluate to true
if there is more than one apostrophe:
if(string.matches("\\'")){
.
.
}
any help would be great!
IMHO you don't need it. You could just do this:
If you want to do it with a regex, this is the first thing that came in my mind