I am using a nested replace function to strip out some json tags but Make seems to be inserting a + character into the function so the output is not as expected.
Hi @Automation_User - the formula doesn’t look right, the first replace() is missing a ; semicolon after emptystring) and this part: ,{“URLs”\[{}\]} isn’t valid JSON so it shouldn’t be in the output string at all.
Your string likely contains something like {”URLs”:[{}]} - that’s what you need to put in the replace function, no escaping necessary because replace() looks for text by default, it’s not a regex parser.