python regular expressions example
Example: python regular expressions example
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)