Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one line solution in Clear category for Between Markers (simplified) by belokr
between_markers = lambda text, begin, end: text[text.find(begin) + 1:text.find(end)]
April 2, 2020