You are viewing a single comment's thread. Return to all comments →
import re import sys pattern = r'https?://(?:ww.\.)?([\w\.\-]+\.[A-Za-z]{2,4})' content = sys.stdin.read() result = set(re.findall(pattern, content)) print(';'.join(sorted(result)))
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 →