Posts by Douglas Carvalho • 1 point
1 post
-
0
votes2
answers535
viewsA: Identify numbers and letters typed in input fields with typescript
Speak ae, you can use regex to check the fields. Below is a brief explanation. (?=.*[a-z]) A string deve conter uma letra minuscula (?=.*[A-Z]) A string deve conter uma letra maiuscula (?=.*[0-9]) A…