Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Between Markers by mikra
def between_markers(text: str, begin: str, end: str) -> str:
splt = text.split(end)
return '' if end in text and begin in splt[1] else splt[0].split(begin)[-1]
April 7, 2019
Comments: