Tagged Questions

0
votes
2answers
92 views

ASP Regular Expression for UK Telephone format in VB.net

Hi, I want regular expression validator for my telephone field in VB.net. Please see the requirement below: Telephone format should be (+)xx-(0)xxxx-xxxxxx ext xxxx (Optional) ex …
15
votes
18answers
9k views

A comprehensive regex for phone number validation

I'm trying to put together a comprehensive regex to validate phone numbers. Ideally it would handle international formats, but it must handle US formats, including the following: …
4
votes
5answers
228 views

How to mark-up phone numbers?

Hi, I want to mark up a phone number as callable link in an HTML document. I have read the microformats approach, and I know, that the tel: scheme would be standard, but is quite …
4
votes
13answers
1k views

US Phone Number Verification

I have a website form that requires a US phone number input for follow up purposes, and this is very necessary in this case. I want try to eliminate users entering junk data 330-00 …
0
votes
8answers
1k views

NSNumber storing float. Please NO scientific notation!!

(iPhone question) My code looks like this NSNumber *inputToNumber = [NSNumber numberWithFloat:[textField.text floatValue]]; the value from the textfield is actually a telephone …
3
votes
5answers
1k views

Is there pseudocode for UK address or phone number validation?

Do you have pseudocode for field validation of the following items in the UK? I am from the USA, so I only know the ones in the USA right now. Address Line 1 Phone Number Mobile …
1
vote
5answers
354 views

Phone numbers to links in Python

I'm working a piece of code to turn phone numbers into links for mobile phone - I've got it but it feels really dirty. import re from string import digits PHONE_RE = re.compile(' …
5
votes
3answers
631 views

Phone number normalization: Any pre-existing libraries?

I have a system which is using phone numbers as unique identifiers. For this reason, I want to format all phone numbers as they come in using a normalized format. Because I have no …