Hi, I am trying to come up with PHP regular expression for our local vehicle registration plate numbers, our number plate is like B123ABC
As stated above, our vehicle registration system goes like this, the first character is a letter 'B' followed by 3 numbers ranging from 101 to 999 then the las 3 characters are letters like 'ABC'. I tried $regex = '/B+[101-999].{3,3}+[a-zA-Z].{3,3}/i';…