Replaces all substrings found between the specified start and end delimiters in the input string,
using the provided replacer function to generate the replacement for each match.
The function searches for all non-overlapping occurrences of substrings between start and end within input,
and replaces each occurrence by invoking replacer with the matched substring.
Replaces all substrings found between the specified
start
andend
delimiters in the input string, using the providedreplacer
function to generate the replacement for each match.The function searches for all non-overlapping occurrences of substrings between
start
andend
withininput
, and replaces each occurrence by invokingreplacer
with the matched substring.