Python: Find urls in a string
Python Regular Expression: Exercise-42 with Solution
Write a Python program to find URLs in a string.
Sample Solution:
Python Code:
import re
text = '<p>Contents :</p><a href="https://w3resource.com">Python Examples</a><a href="http://github.com">Even More Examples</a>'
urls = re.findall('http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+', text)
print("Original string: ",text)
print("Urls: ",urls)
Sample Output:
Original string:Contents :
Python ExamplesEven More Examples Urls: ['https://w3resource.com', 'http://github.com']
Pictorial Presentation:
Flowchart:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to remove everything except alphanumeric characters from a string.
Next: Write a Python program to split a string at uppercase letters.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/python-exercises/re/python-re-exercise-42.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics