Hi, I'm building a flow that receives a json collection from an external API. In this json collection there is a property which corresponding value always contains html tags and I don't want those tags to be shown in my final report (the flow will generate a html table in an outlook mail as a report)
This is an example of the property in the json collection
"permissions": [],
"isAutoAssigned": true,
"ticket": {
"description": "<p> Need address confirmation for Hong Kong region </p><html> <head> </head>
<body> <p> Hi Team, </p> <p> </p><p> Please be informed that we have received a
notification about Hong Kong invoice getting billed with incorrect banking address(attached
is the copy of invoice for your reference), below is the confirmation form treasury that the
banking address in attached supplier sheet is the correct one , request you to make necessary
changes to fix the address on invoice copies revert at the earliest. </p> <p> </p>
"location": {
This how I'm getting the json, using a HTTP post request, after that I parse the json and the I use a filter array action to filter the json array (I don't want all the json objects)

After all of that, I use a select action to select the properties that I want to show in the final report

Is there any way to remove the html tags from the "description" json property?
I already try doing something like this in the select action but is not working form me
replace(replace(replace(string(body('inProgress_tickets_array')),'<p>',''),'</p>',''),'<html>','')