Skip to content

Instantly share code, notes, and snippets.

View jbourgein's full-sized avatar

Jeremy Bourgein jbourgein

View GitHub Profile
@jbourgein
jbourgein / phoneNumberIsValid.js
Created January 12, 2016 14:49
Phone Number Validation RegEx Pattern
/*
Valid phone number patterns:
01611234567
0161 123 4567
(0161) 123 4567
0161-123-4567
+44 161 123 4567
+441611234567
+44(0)161234567
00 44 161 1234567
@jbourgein
jbourgein / getHostFromUrlString
Created June 4, 2015 15:30
get just the host from a url string
function getHostFromUrlString(url){
var url = "www.a.host.com/sub/super.html?id=123";
var tempA = document.createElement('a');
tempA.href = url;
return tempA.hostname;
}