You are viewing a single comment's thread. Return to all comments →
import re, sys regex = re.findall(r"(?:(http:\/\/|https:\/\/))(?:www\.)?([a-z0-9\-\.]+\.(org|com|in|tv|me|net))", sys.stdin.read()) print(*sorted({m[1] for m in regex}), sep=';')
Seems like cookies are disabled on this browser, please enable them to open this website
Detect the Domain Name
You are viewing a single comment's thread. Return to all comments →