In Azure logic Apps, how can I escape single quotes('
) using a replace function?
I have a JSON payload where I have to replace a single quote('
) with a double quote("
).
The expression I've came up with looks like this:
replace(string(@triggerBody()),'/' ','/" ')
But my second expression to escape the single quote ('
) isn't working.