Tagged Questions
0
votes
2answers
73 views
Javascript Regular Expression detect all the Phone Number from the page source
Anyone can help me how to do it ?
My current one is (I find it on somewhere):
...
0
votes
1answer
50 views
Phone ReGex to accept also letters after checking the first 3 or 4
I have found this awesome regex here in stack overflow and added the additional formats i need for my phone validation. But now I am asked to allow the following:
(555)YOU-RULE
(555) MEI-YOUN
...
1
vote
0answers
58 views
Does this catch all phone number formats? [closed]
I've been working on code to convert user input into a readable form of a phone number. I am not scrubbing anything when the user inputs a phone number, but I do try to scrub it on output back to the ...
0
votes
1answer
171 views
Regex comma separated list contains nine digits phone number
I have quite small but very annoying problem with regex. I would like to find regex for comma separated list which contains nine digits phone number for example :
Pass : 123456789,123456789
Not Pass ...
0
votes
1answer
198 views
What is the best regular expression for phone numbers? [duplicate]
Possible Duplicate:
A comprehensive regex for phone number validation
What regular expression will match valid international phone numbers?
I've seen some posts on StackOverflow on ...
1
vote
3answers
138 views
regex for specific phone number arrangement
i'm currently using this regex
"/^([0-9\(\)\/\+ \-]*)$/",
which is fine,but the problem is i am also using a masking script,
which produces this line automatically,
(___) ___-____
and it ...
0
votes
1answer
38 views
US Phone regex that works in IE
I had been using the following regex for US Phone Number validation, but discovered it doesn't work in IE7. I am aware of the lookahead issues, and was able to fix a password validation by moving the ...
1
vote
3answers
542 views
Phone number format javascript
I'm trying to format some phone numbers with regexp. The phone numbers i have stored are of diffrent length and all phone numbers have their country codes. Lets say a number looks like this: ...
-4
votes
2answers
785 views
How to do Phone number format checking in javascript or jquery? [closed]
I have a form with phone number field, i need to validate it with the format on keypress. How to do this?
It will be like, some one enters a special characters except ( ) - or alphabet then and there ...
1
vote
1answer
699 views
how to do a regexp validation for us phone number not to begin with 0 or 1?
I've been looking at many regexp validations for phone numbers but i wouldn't find one that allows only 10 digits and not to start with 0 or 1, obviously only numbers
i found this one
...
0
votes
3answers
978 views
Regex phone validation
I have created a reg Exp, which basically allows all formats I like it to allow. However, there still is a little problem with the ()...
^\(?(\+?\d+)?\)? ?\d*(-?\d{2,3} ?){0,4}$
This would be ...
0
votes
2answers
368 views
Extract substring out of a user input phone number using Javascript
I am getting phone number input from user as +XXX-X-XXX-XXXX that (+XXX as country code), (X as city Code), (XXX as 1st 3 digits) and , (XXX as 2nd 4 digits). I used regular expression to confirm the ...
0
votes
1answer
61 views
Storing phone nos with only numbers and with “x” for extension?
I have a test function which would sanitize phone nos and allow only nos and characters "x" or "X" to be stored. I have it to where it does most of it other than it allows multiple x's which I don't ...
2
votes
2answers
236 views
What is the best way to match two format of phone numbers in android SDK?
What should be the best method to match phone numbers in situation where the format of phone number will be a problem?
I am looking for a standards rich best practices way of doing this. I have users ...
0
votes
4answers
638 views
Regular Expression for International and local mobile and landline numbers [closed]
I just wanted to get a Regex for an input form field for Phone Number which verifies the following test cases for me -
It can start with + or any number 0-9, + can come only once and only at the ...
3
votes
5answers
4k views
Phone validation regex
I'm using this pattern to check the validation of a phone number
^[0-9\-\+]{9,15}$
It's works for 0771234567 and +0771234567,
but I want it to works for 077-1234567 and +077-1234567 and ...
0
votes
3answers
251 views
match phone numbers from text
I have regex in php that matches pretty good phone numbers from some text.
([\+|0](?:[0-9/\-\(\) ] ?){7,25}[0-9])
good matches: 041 797 - 991 or +386 2 80 55 291 or +386 (0)41 718 827
bad ...
1
vote
1answer
536 views
A typical regex for phone number validation in Java
I am struggling with getting the right regex for a phone number validation in my application. I have got a regex that will accept only numbers and some special symbols like ()- etc, however, the ...
0
votes
5answers
931 views
Phone number format in Javascript
I need to check Format Phone Number.
+33xxxxxxxxx
0033xxxxxxxxx
EDIT : 0xxxxxxxxx
How can I do that with(out) regex ?
-1
votes
3answers
721 views
Regex for universal phone number
I have a regex for universal phone numbers:
**/^(\+\d)*\s*(\(\d{3}\)\s*)*\d{3}(-{0,1}|\s{0,1})\d{2}(-{0,1}|\s{0,1})\d{2}$/**
It is accepting the following strings:
339-4248
(095) 2569835
+7 ...
0
votes
6answers
900 views
How to modify regex for phone numbers and accept only digits
I have this following regex method for the jquery validate plugin.
jQuery.validator.addMethod("phoneUS", function(phone_number, element) {
phone_number = phone_number.replace(/\s+/g, "");
...
0
votes
1answer
469 views
NSDataDetector phone numbers
I am using NSDataDetector to parse a text and retrieve the numbers. Here is my code:
NSDataDetector *detector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypePhoneNumber
...
0
votes
1answer
704 views
Javascript regular expression for phone number validation.(String contains only at least 1 digit, 0 or more spaces and '-'
Currently I have an expression:
numMatches = phone.match(/[^\d\s\-]/gi);
if (numMatches != null) {
alert(invPhnNo);
}
This gives an alert if any characters other than digit, space and ...
1
vote
3answers
271 views
Simple phone regex
I want a regex that checks the following things:
The string starts with an +
After the '+' only numbers can occur
There should be atleast 4 numbers after the +
Does anyone know how to make this?
0
votes
4answers
472 views
Regex does not accept a 10-digit phone number
I am using this regex to validate for the phone number:
^(\\([2-9]\\d{2}\\)|[2-9]\\d{2})[- ]?\\d{3}[- ]?\\d{4}$
However, when I test the input of any 10-digit phone number without dashes or spaces, ...
1
vote
7answers
286 views
A regular expression to extract a business extension from a phone number
I am having the dang-est time trying to write a regex that will extract the phone extension from a full phone number string. This should work on a number like this one: 777.777.7777 x 7302
It should ...
2
votes
3answers
644 views
Help identifying international phone numbers in string in PHP
I am trying to write a function that will pull valid phone numbers from a string that are valid somewhere on the planet. This is for a truly international site for an organization that has locations ...
1
vote
3answers
2k views
Regex allowing spaces (for a Phone number regex)
I have this regex:
preg_match("#^([0-9]+)$#", $post['telephone'])
who allow only numbers (for a phone number in the French type so 0123456789) but I would like to allow spaces. For example allow ...
0
votes
6answers
1k views
How to validate a phone number with + symbol in objective c?
I am so confused about the regex methods. My requirement is to validate a phone number that may contains + symbol in its prefix. Then all the charactors should be numerals only. For this, how can i ...
1
vote
5answers
4k views
RegEx: Uk Landlines, Mobile phone numbers
I've been struggling with finding a suitable solution :-
I need an regex expression that will match all UK phone numbers and mobile phones.
So far this one appears to cover most of the UK numbers:
...
0
votes
4answers
536 views
Regex which controls phone numbers
i'm new to regex, and i only need one statement.
I want that my statement accepts these numbertyps:
06643823423 could be longer
or 0664 3843455
or +43664 4356999
and it's important that these is ...
2
votes
5answers
5k views
How do you format a 10 digit string into a phone number?
I have database records in the form of 10 character long strings, such as 4085551234.
I wish to format these into this format: (408) 555-1234.
I think this is regex related. I'm new to programming ...
0
votes
5answers
901 views
Search for embedded email and phone numbers
I need to use a javascript form validation routine to scan various input text fields for embedded phone numbers and email addresses. This is for a classifieds system that is free to post but 'pay to ...
2
votes
4answers
623 views
How to take a phone number with a plus and bracket and just return the numbers?
I have a simple problem I have a phone like this: +1 (123) 123-1234 and I want to just take the numbers out of that string using regex.
Any help will be greatly appreciated.
Thanks