10 lines
193 B
Python
10 lines
193 B
Python
# This module should extract any and all URIs (IPs or URLs) from copy and pasted text.
|
|
|
|
def parse(text):
|
|
split_text = text.split()
|
|
for URI in split_text:
|
|
print(URI)
|
|
|
|
|
|
|