How to replace ";" from text?

The automation receives a link from the CRM in which “amp;” is added after the “&” symbol. It must be removed because the link does not work with it. The replace() formula does not work because “;” reserved character.

  • How can this be done?

You can try to use the builtin decodeURL() function

image

There’s a good chance this will return a working URL for you.

But in case that doesn’t work, you should also be able to just copy-paste your & inside your replace function. As typing it does indeed get you the Make ;

image

results into:

image

3 Likes

Solved this issue with the “Text Parser (replace)” module.

2 Likes