java - Regex to match string of unique characters -
This is my regular expression:
((AZ)) + )
I want every letter to be displayed most often, unfortunately it is not working properly, because this input:
< Code> Go ABCC
^ (GO: ([AZ]) (?!. * * 2)) + $$
Comments
Post a Comment