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 produce a regex that says there must be at least one of each somewhere within the string?
Regards
BeBop
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 produce a regex that says there must be at least one of each somewhere within the string?
Regards
BeBop