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

Popular posts from this blog

c# - SignalR: "Protocol error: Unknown transport." when navigating to hub -

Camel ProducerTemplate possible memory leak -

javascript - Adhering to a max length setting with jshint -