Get string between two substrings
a = "Bonjour tout le monde" result = a[a.find("Bonjour")+len("Bonjour"):a.rfind("monde")] # result = " tout le "