RSS Feed and html encoding, any way I can render or remove these <p>, ’, etc?

TIA if anybody can help me

0 2 162
  • UX
2 REPLIES 2

I would rather handle this at the data source, not in AppSheet.

Otherwise, if you want to remove html tags and entities, AND you expect only few of those, you can do something like:

SUBSTITUTE( 
  SUBSTITUTE(
    SUBSTITUTE(
      [Content],
      "<p>",
      ""
    ),
    "&#8217;",
    "'"
  ),
  "&#8230;",
  ":"
)

and so on. Even if there is a simpler solution, I would still handle this at the data source (with a RE).

I don’t know about the possibility to render HTML content in AppSheet.

Steve
Platinum 4
Platinum 4

AppSheet has no provisions for processing HTML content.

Top Labels in this Space