Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the relative url from absolute url in javascript using regex and replace method.

I tried following but it is not working

var str="http://localhost/mypage.jsp";
document.write(str.replace("^[\w]*\/\/[\w]*$",""));

Any help appreciated.

Thanks

share|improve this question
Relative to where? – Quentin Jun 7 '11 at 9:50
I want output as /mypage.jsp to provided http://localhost/mypage.jsp. – user549757 Jun 7 '11 at 10:11

3 Answers

up vote 2 down vote accepted

If by "relative URL" you mean the part of the string after the first single /, then it's simple:

document.write(str.replace(/^(?:\/\/|[^\/]+)*\//, ""));

This matches all the characters up to the first single / in the string and replaces them with the empty string.

In: http://localhost/my/page.jsp --> Out: /my/page.jsp

share|improve this answer
@Tim - it is not working as the way you said. Outs me the entire url :( – user549757 Jun 7 '11 at 10:06
Hm, strange. Try str.replace(/^(?:\/\/|[^\/]+)*\//, "");, how about now? – Tim Pietzcker Jun 7 '11 at 10:19
@Tim - yeah, this works now. but a little more problem. I want the part after second single /, can you plz help me modifying this regex? – user549757 Jun 7 '11 at 10:32
@Tim - hey Thanks Tim +1, I got it working using str.replace(/[\w]*:\/\/[\w]*\/[\w]*/,""), but still waiting for solution the way you approached. :) – user549757 Jun 7 '11 at 10:48
In your example (up in your question) there is only one single slash - what should happen then? – Tim Pietzcker Jun 7 '11 at 10:51
show 3 more comments

A nice way to do this is to use the browser's native link-parsing capabilities, using an a element:

function getUrlParts(url) {
    var a = document.createElement('a');
    a.href = url;

    return {
        href: a.href,
        host: a.host,
        hostname: a.hostname,
        port: a.port,
        pathname: a.pathname,
        protocol: a.protocol,
        hash: a.hash,
        search: a.search
    };
}

You can then access the pathname with getUrlParts(yourUrl).pathname.

The properties are the same as for the location object.

share|improve this answer
+1 Good trick to play with urls.. – user549757 Jun 7 '11 at 10:49

don't forget that \ is an escape character in strings, so if you would like to write regex in strings, ensure you type \ twice for every \ you need. Example: /\w/ -> "\w"

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.