Want a regex for validating Indian Vehicle Number Format?

前端 未结 11 960
隐瞒了意图╮
隐瞒了意图╮ 2021-01-31 21:35

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

11条回答
  •  心在旅途
    2021-01-31 21:57

    AP-05-BJ-9353
    TN-35-AB-638
    MH-03-C-3843
    

    Expression:

    ^[A-Z]{2}[-][0-9]{1,2}[-][A-Z]{1,2}[-][0-9]{3,4}$
    

    Check the expression here: https://regexr.com/

提交回复
热议问题