Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
split(begin).split(end) solution in Clear category for Between Markers by kim.yangjin
def between_markers(text: str, begin: str, end: str) -> str:
if text.find(begin) > text.find(end) > 0: return ""
else: return text.split(begin)[len(text.split(begin))-1].split(end)[0]
Aug. 7, 2020