Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
str.find(sub, start) solution in Speedy category for Between Markers (simplified) by David_Jones
def between_markers(text, begin, end):
i = text.find(begin) + 1
j = text.find(end, i)
return text[i:j]
June 17, 2019
Comments: