import re txt = "The rain in Spain" x = re.search("^The.*Spain$", txt)
import re
txt = "The rain in Spain"
x = re.search("^The.*Spain$", txt)