Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a validation function for both UK and NI vehicle registration number. It can be two separate functions too.

share|improve this question
That's wonderful. Did you have a question? :) – George Johnston Oct 26 '10 at 14:22
Specify the possible string combinations and someone might supply a regex for it, i.e. state your requirements. – Steve Claridge Oct 26 '10 at 14:23
1  
New format XXNNXXX, old format X999XXX, even older format XXX999X, or the very oldes format XXX999? – Mark Baker Oct 26 '10 at 14:26

2 Answers

up vote 1 down vote accepted

Have a look here.

share|improve this answer
I am trying to use this regexlib.com/RETester.aspx?regexp_id=617 Like static public function isValidUKVehicleRegistration ($registration) { $regex = "/^([A-Z]{3}\s?(\d{3}|\d{2}|d{1})\s?[A-Z])|([A-Z]\s?(\d{3}|\d{2}|\d{1})\s?[A-Z]{‌​3})|(([A-HK-PRSVWY][A-HJ-PR-Y])\s?([0][2-9]|[1-9][0-9])\s?[A-HJ-PR-Z]{3})$/"; $valid = preg_match($regex, $registration); die(var_dump($valid)); return $valid; } but still failing to match a valid reg number. – Optimus Oct 26 '10 at 14:33
Well that's out of date. 'T' wasn't assigned in 2001, but has been since (for Scotland). – Colin Fine Oct 26 '10 at 15:49

I have the UK Registration Validation Script, it just loads into the AA car check database remotely, and will get the vehicles details. and if no vehicle is found, will flag up error.

My script can be modified for any use :)

check out the script on we buy any van cash this is for a vehicle selling website, but can be modified for your use.

It Curl's into the Aa's Website and bring's raw data back to your website for styling :)

www.webuyanyvancash.co.uk

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.