Preview:
export const findAndReplaceSpecialSymbols = (text?: string) => {
  if (!text) return "";
  const textToReplace = _isArray(text) ? text[0] : text;

  const pattern = /{{(.*?)}}/g;
  return textToReplace.replace(
    pattern,
    '<span>$1</span>'
  );
};
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter