Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
simplified solution to between markers - straightforward index call solution in Clear category for Between Markers (simplified) by new_hoschi
def between_markers(text: str, begin: str, end: str) -> str:
return text[text.index(begin)+1:text.index(end)]
March 28, 2020