Last Updated: February 25, 2016
·
7.759K
· agam360

Regex Full URL -> Base URL

Full url:
http://stackoverflow.com/questions/6038061/regular-expression-to-find-urls-within-a-string

Base:

stackoverflow.com

Regex:
(http(s)?:\/\/)|(\/.*){1}

Example in JavaScript:

function toBaseURL(fullURL){
    return fullURL.replace(/(http(s)?:\/\/)|(\/.*){1}/g, '');
}

1 Response
Add your response

Thank you very much! It works

over 1 year ago ·