export type ReplaceCallback = ( match: RegExpExecArray | RegExpMatchArray, pushIndex: number ) => R; export type ConvertPartCallback = (text: string, pushIndex: number) => R; export const findAndReplace = ( text: string, regex: RegExp, replace: ReplaceCallback, convertPart: ConvertPartCallback ): Array => { const result: Array = []; let lastEnd = 0; let match: RegExpExecArray | RegExpMatchArray | null = regex.exec(text); while (match !== null && typeof match.index === 'number') { result.push(convertPart(text.slice(lastEnd, match.index), result.length)); result.push(replace(match, result.length)); lastEnd = match.index + match[0].length; if (regex.global) match = regex.exec(text); } result.push(convertPart(text.slice(lastEnd), result.length)); return result; };