Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var url = 'http://domain.com/file.php?id=1';

or

var url = 'https://domain.us/file.php?id=1'

or

var url = 'domain.de/file.php?id=1';

or

var url = 'subdomain.domain.com/file.php?id=1'

from either one of these urls I want to get only the path, in the case above:

var path = '/file.php?id=1';
share|improve this question
See also stackoverflow.com/questions/736513/… – Pavel Chuchuva Mar 28 '11 at 20:06

4 Answers

up vote 18 down vote accepted

You could do it with regex, but using these native properties are arguably the best way to do it.

var url = 'subdomain.domain.com/file.php?id=1',
    a = document.createElement('a');

a.href = 'http://' + url;
var path = a.pathname + a.search; // /file.php?id=1

See it on jsFiddle.net

share|improve this answer
clever use of the anchor tag! not seen it done before :) – rtpHarry Dec 21 '10 at 9:09
Great answer alex, but what if the url is like 'subdomain.domain.com/myfiles/file.php?id=1' and I just want to get the '/file.php?id=1', I should use regex, no? – stecb Dec 21 '10 at 9:10
1  
@steweb In that case, get the path using the code above, and then ditch the first segment with a regex path.replace(/^\/[^\/]+/, ''); – alex Dec 21 '10 at 9:15
great ;) thanks – stecb Dec 21 '10 at 9:17

In Douglas Crockford's book "JavaScript: The Good Parts", there's a regex for retreiving all url parts. It's on page 66 and you can see it here: http://books.google.ch/books?id=PXa2bby0oQ0C&pg=PA66

You can copy and paste from here: http://www.coderholic.com/javascript-the-good-parts/

share|improve this answer

Use string.lastIndexOf(searchstring, start) instead of a regex. Then check if the index is within bounds and get substring from last slash to end of the string.

share|improve this answer

this version is with regex. Try this out:

var splittedURL = url.split(/\/+/g);
var path = "/"+splittedURL[splittedURL.length-1];
share|improve this answer
1  
Just a suggestion, you could use splittedURL.pop() to get the last member :) – alex Feb 4 '11 at 14:55
Thanks a lot alex, I didn't know about pop() - wtf :) – stecb Feb 4 '11 at 16:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.