Phone
en-GB
#phone
#uk
#british
#mobile
Phone — UK
Matches UK phone numbers in standard formats, starting with 0 or +44.
✓ UK contact forms✓ Address validation✓ CRM systems
✓ Valid Examples
- +44 20 7183 8750
- 020 7183 8750
- 07700 900123
- 07700900123
✗ Invalid Examples
- +1 555 867 5309
- 123456
- 00000000000
Usage & Integration
Validate Phone — UK natively in your backend or frontend without copying regex strings.
Node / Edge
import { validate } from '@regexto/validators';
validate('phone-uk', '...');Python
from regexto_validators import validate
validate("phone-uk", "...")Go
import "github.com/regex-to/validators-go"
valid, err := validators.Validate("phone-uk", "...")PHP
use RegexTo\Validators\Validator;
Validator::validate('phone-uk', '...');Rust
use regexto_validators::validate;
let is_valid = validate("phone-uk", "...").unwrap();