2016-10-20 05:21:49 +00:00
|
|
|
SELECT
|
|
|
|
firstSignificantSubdomain('http://hello.canada.ca') AS canada,
|
|
|
|
firstSignificantSubdomain('http://hello.congo.com') AS congo,
|
|
|
|
firstSignificantSubdomain('http://pochemu.net-domena.ru') AS why;
|
|
|
|
|
|
|
|
SELECT
|
2022-03-24 02:37:24 +00:00
|
|
|
firstSignificantSubdomain('ftp://www.meta.com.ua/news.html'),
|
|
|
|
firstSignificantSubdomain('https://www.bigmir.net/news.html'),
|
|
|
|
firstSignificantSubdomain('magnet:ukr.abc'),
|
|
|
|
firstSignificantSubdomain('ftp://www.yahoo.co.jp/news.html'),
|
|
|
|
firstSignificantSubdomain('https://api.www3.static.dev.ввв.гугл.ком'),
|
|
|
|
firstSignificantSubdomain('//www.meta.com.ua/news.html');
|
2016-10-20 05:21:49 +00:00
|
|
|
|
|
|
|
SELECT
|
|
|
|
firstSignificantSubdomain('http://hello.canada.c'),
|
|
|
|
firstSignificantSubdomain('http://hello.canada.'),
|
|
|
|
firstSignificantSubdomain('http://hello.canada'),
|
|
|
|
firstSignificantSubdomain('http://hello.c'),
|
|
|
|
firstSignificantSubdomain('http://hello.'),
|
|
|
|
firstSignificantSubdomain('http://hello'),
|
|
|
|
firstSignificantSubdomain('http://'),
|
|
|
|
firstSignificantSubdomain('http:/'),
|
|
|
|
firstSignificantSubdomain('http:'),
|
|
|
|
firstSignificantSubdomain('http'),
|
|
|
|
firstSignificantSubdomain('h'),
|
|
|
|
firstSignificantSubdomain('.'),
|
|
|
|
firstSignificantSubdomain(''),
|
|
|
|
firstSignificantSubdomain('http://hello.canada..com'),
|
|
|
|
firstSignificantSubdomain('http://hello..canada.com'),
|
|
|
|
firstSignificantSubdomain('http://hello.canada.com.');
|