Reputation: 107
I'm parsing some JSON into an HTML table in Azure Logic Apps. I want some list elements to be separated into multiline cell. Example:
However, the < and > symbols are being escaped causing this to be interpreted literally in the output:
Is there any way to escape the escape?
Upvotes: 0
Views: 737
Reputation: 5506
You can use the below replace actions to remove those html escape characters.
replace(replace(variables('string'),'<br>',' '),'<test>', ' ')
Here is the sample output when using the above replace action
Here is the reference SO thread
Upvotes: 0