Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Between Markers by mozurin
"use strict";
function betweenMarkers(text, begin, end)
{
const completed = (
(text.includes(begin)? '' : begin) +
text +
(text.includes(end)? '' : end)
);
return completed.slice(
completed.indexOf(begin) + begin.length,
completed.indexOf(end)
);
}
June 25, 2018