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

python - Strange behavior using PyQt4's 'pyqtSlot' decorator before another decorator -

c# - UnhandledExceptionMode.ThrowException for AppDomain.UnhandledException -

c# - Process.Kill() returns access denied -