We get the content in HTML format. We are want to displaying text without HTML tags in roku scene graph. We don’t know how to strip all HTML tags?
Please help us for resolve this issue.
If you can run your html string through PHP it’s real easy –
https://www.w3schools.com/php/func_stri … p_tags.asp
One issue with doing that is that it will match anything between less than and greater than signs - not necessarily a valid html tag.
But for the cheap man’s solution it works.
“destruk” wrote:
One issue with doing that is that it will match anything between less than and greater than signs - not necessarily a valid html tag.
If the source is valid HTML, the greater than and less than signs would be < or < HTML entities, not < or >.
Your solution is either recommending the developer proxy the html through PHP to strip the HTML or modify the original output, which I doubt they would prefer.
