Hi All,
I am in need of regex for alphanumeric (uppercase only) values which will verify string of length 5below
ABCCD - False
AB12C - True
ABC12 - True
12ABC - True
12345 - False
If it contain any lowercase then it should result in false as well.
My regex ^[A-Z0-9]{5}$ is not working for above type of values.
Thanks
Raj