Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Short as possible one liner solution in Clear category for Between Markers by Wojtek_Okularczyk
#Solution created in cooperation with my friend
def between_markers(t, b, e):
return t[(b+t).rfind(b):(t+e).find(e)]
Oct. 2, 2021
Comments: