w3resource

Python: Find urls in a string


42. Find URLs

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.

For more Practice: Solve these Related Problems:

  • Write a Python program to extract all URL patterns from a block of text using regex.
  • Write a Python script to search for and list all web addresses in a given string.
  • Write a Python program to scan a text for URLs and then output each found URL along with its position.
  • Write a Python program to extract URLs from a text file and then validate each URL's format.

Go to:


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.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

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.