Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a regex to extract a danish phone number from a string. I got this

var phrase = "Text text text 11 22 33 44 text text.";
phrase = phrase.replace(/^((\(?\+45\)?)?)(\s?\d{2}\s?\d{2}\s?\d{2}\s?\d{2})$/, "replace phone number");
alert(phrase);

I found this link, but it does not work: http://www.dbsoftlab.com/etl-tools/regular-expressions/is-danish-phone-number.html

share|improve this question
1  
Good to see a former Sunderland goalkeeper delving into the world of web development. – rrrr Jan 23 at 16:23

3 Answers

up vote 1 down vote accepted

In the expression you are trying to use, it will only match if the phone number is the only thing in the string, because ^ matches the beginning of the string and $ matches the end.

I believe that this is a much simpler regex that will work:

/([0-9]{2} ){3}[0-9]{2}/

So, you could say textStr.replace(/([0-9]{2} ){3}[0-9]{2}/g,'new string').

Check it here: http://refiddle.com/gk8

share|improve this answer
This seems to work as expected. Thanks :) – TommySorensen Jan 23 at 14:21

The problem is ^ and $, which match the beginning and end of a string, respectively. Since the number is in the middle of the string, they don't match. Remove them, and it works:

> var phrase = "Text text text 11 22 33 44 text text.";
undefined
> phrase = phrase.replace(/((\(?\+45\)?)?)(\s?\d{2}\s?\d{2}\s?\d{2}\s?\d{2})/, " replace phone number");
'Text text text replace phone number text text.'
share|improve this answer

I would go with:

/(?:45\s)?(?:\d{2}\s){3}\d{2}/

This maintains the optional country code that the prior regex has. I'm using non-capturing groups here for efficiency.

https://developer.mozilla.org/en-US/docs/JavaScript/Guide/Regular_Expressions#Using_Special_Characters

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.