Answers for "get domain name regex javascript"

5

javascript get domain name from string

const url = 'https://www.mydomain.com/blog?search=hello&world';
const domain = (new URL(url)).hostname.replace('www.','');
Posted by: Guest on August-28-2020
0

get domain name with regex

const urls = [
  'www.abc.au.uk',
  'https://github.com',
  'http://github.ca',
  'https://www.google.ru',
  'http://www.google.co.uk',
  'www.yandex.com',
  'yandex.ru',
  'yandex',
  'devmaster.auxitaplatform.com',
]

urls.forEach(url => console.log(url.replace(/.+\/\/|www.|\..+/g, '')))
Posted by: Guest on August-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language