i want to match something like aaaa, aaaad, adjjjjk. Something like this ([a-z])\1+ was used to match the repeated characters but i am not able to figure this out for 4 letters.
feedback
|
|
Not knowing about the finite repetition syntax, your own problem solving skill should lead you to this:
Obviously it's not pretty, but:
The problem is that in Java, Unfortunately there is no
| ||||
|
feedback
|
|
You want to match a single character and then that character repeated three more times:
Note: In Java you need to escape the backslashes inside your regular expressions. Update: The reason why it isn't doing what you want is because you are using the method
Result:
| ||||
|
feedback
|
|
General regex pattern for predefinite repetition is Thus here ([a-z])\1{3} should match your 4 chars. | |||
|
feedback
|