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