Hi there,
I am trying to create a TCL regex that checks a string contains at least one uppercase, one lowercase and one numeric character.
I tried using [A-Z]+[a-z]+[0-9]+.* but this enforces that the first three characters have to be upper, lower, numeric.
Can anyone tell me how I can...