Hello everyone here...
I need to build up a swing application related to vehicle registration and in which i want to do input the vehicle number of indian standard, like:
MP 09 AB 1234
AH 17 FT 2387
UT 32 DR 6423
DL 01 C AA 1111
More Specifically,
Please if any one can help me?
DocumentFilter
type class can also help me.........
Based on the Wikipedia spec:
^[A-Z]{2}[ -][0-9]{1,2}(?: [A-Z])?(?: [A-Z]*)? [0-9]{4}$
Try this
^[A-Z]{2}\s[0-9]{2}\s[A-Z]{2}\s[0-9]{4}$
^
means start of string
[A-Z]{2}
means 2 characters in the range of A through Z
\s
means white space
[0-9]{2}
means 2 characters in the range of 0 through 9
\s
means white space
[A-Z]{2}
means 2 characters in the range of A through Z
\s
means white space
[0-9]{4}
means 4 characters in the range of 0 through 9
$
means end of string
Based on what you said in your question this should be a very broad check against proper format, but I have a feeling that there are more specific regulations on how the license plates are numbered. Let me know if there are additional constraints for the regex.
If you are looking for number plate(VRN) then use following regex
^[A-Z|a-z]{2}\s?[0-9]{1,2}\s?[A-Z|a-z]{0,3}\s?[0-9]{4}$
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With