w3resource

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:

Python: Regular Expression - Find urls in a string.

Flowchart:

Flowchart: Regular Expression - Find urls in a string.

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.



Follow us on Facebook and Twitter for latest update.