You can try the following:
\/\/([^\/,\s]+\.[^\/,\s]+?)(?=\/|,|\s|$|\?|#)
Regex live here.
Live JavaScript example:
var regex = /\/\/([^\/,\s]+\.[^\/,\s]+?)(?=\/|,|\s|$|\?|#)/g; var input = "https://www.google.com/hello/hi.php, http://youtube.com," + "http://test.net#jump or http://google.com?q=test"; while (match = regex.exec(input)) { document.write(match[1] + "<br/>"); };
Hope this helps
user4227915
source share