I wanted to ask if there is any way of finding a sequence of characters from a bigger string in python? For example when working with urls i want to find www.example.com
from http://www.example.com/aaa/bbb/ccc
. If found, it should return True.
Or is there any other way to do so? Thanks in advance!