Question
remove html tags from a string
Hi, is there a simple way to get rid of html tags present on
a string? What about special chars encoded? What I want to do is to
change
<p>Hi, this is a <b>tagged html</b> text with some special chars: áÁç...</p>
into this:
Hi, this is a tagged html text with some special chars: áÁç...
The formatting information, like the bold on text above, is not important to me. I just want the plain text with special chars converted.
<p>Hi, this is a <b>tagged html</b> text with some special chars: áÁç...</p>
into this:
Hi, this is a tagged html text with some special chars: áÁç...
The formatting information, like the bold on text above, is not important to me. I just want the plain text with special chars converted.
