Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Regex One-Liner solution in Clear category for Between Markers (simplified) by PHANTOM0308
between_markers = lambda x,y,z : __import__('re').search(f'(?<=[{y}]).*(?=[{z}])', x).group(0)
April 7, 2020