Hi, I need to ensure that a input string follows these rules:
- It should contain upper case characters only.
- NO character should be repeated in the string. eg. ABCA is not valid because 'A' is being repeated.
For the upper case thing, [A-Z] should be fine. But i am lost at how to ensure no repeating characters.
Can someone suggest some method using regular expressions ?