0

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: enter image description here

However, the < and > symbols are being escaped causing this to be interpreted literally in the output: enter image description here

Is there any way to escape the escape?

1 Answer 1

0

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

enter image description here

  • Alternatively, Microsoft have included new connector called - Content Conversion.This converts HTML contents to plain string.

Here is the sample output : enter image description here

Here is the reference SO thread

Sign up to request clarification or add additional context in comments.

1 Comment

The query is not about removing the tags but to apply it.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.