Skip to content

Instantly share code, notes, and snippets.

@fatihacet
Created November 22, 2011 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatihacet/1386061 to your computer and use it in GitHub Desktop.
Save fatihacet/1386061 to your computer and use it in GitHub Desktop.
returns base url from a string url.
var u = 'www.loremipsum.com';
var p = /^(http:\/\/)?([^\/]+)/i
u.match(p)[2]
// http://www.loremipsum.com -> www.loremipsum.com
// www.loremipsum.com -> www.loremipsum.com
// www.loremipsum.com/dolor/sit/amet -> www.loremipsum.com
// http://www.loremipsum.com/dolor/sit/ -> www.loremipsum.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment