Posts by Felipe Almeida • 11 points
1 post
-
1
votes2
answers255
viewsA: Regular expressions to fix the format of a field as it is typed
I did the regex here on www.regex101.com and created the following regex Regex1: RNE[A-Z0-9][0-9]{1,6}[A-Z0-9] Regex2: W[0-9]{7}[A-Z0-9] I tested with the examples you passed and worked perfectly!…