Press n or j to go to the next uncovered block, b, p or k for the previous block.
export function replaceSemicolonWithURLEncoded(text: string) { const regex = /;/g; return text.replace(regex, "%3B"); }