I'm doing some text checks for password.
I have already localized for a special character but I did not find it for uppercase letter.
I used Regex. For example if the text contains "test" returns false and if it contains "tesTE" returns true.
Can anyone tell me? If it works with Regex too?
I used this to check if my password field has a special character
ExisteCaracterEspecial = Regex.IsMatch(txt_senha.Text, ("[\[\]\^\$\.\|\?\*\+\(\)\~'\!@#%&\-_+={}'""<>:;, ]{1,}"));
I'm using VB.NET