Skip to content

Instantly share code, notes, and snippets.

@Mezzle
Created February 25, 2015 15:58
Show Gist options
  • Save Mezzle/3413d43e0e6ea019abc4 to your computer and use it in GitHub Desktop.
Save Mezzle/3413d43e0e6ea019abc4 to your computer and use it in GitHub Desktop.
$valid = false;
$incoming = $this->getData('vat_number');
$clean = preg_replace('[^a-zA-Z0-9]', '', $incoming);
if (preg_match($clean, '/^(GB)?([0-9]{9}([0-9]{3})?|[A-Z]{2}[0-9]{3})$')) {
$valid = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment