vote up 3 vote down star
1

I have snippets of Html stored in a table - not entire pages, no tags or the like, just basic formatting.

I would like to be able to display that Html as text only - no formatting - on a given page (actually just the first 30 - 50 characters but that's the easy bit).

How do I place the "text" within that Html into a string as straight text?

So;

Hello World.

Is there anyone out there?

becomes:

Hello World. Is there anyone out there?

flag

7 Answers

vote up 2 vote down check

If you are talking about tag stripping, it is relatively straight forward if you don't have to worry about things like <script> tags. If all you need to do is display the text without the tags you can accomplish that with a regular expression:

<[^>]*>

If you do have to worry about <script> tags and the like then you'll need something a bit more powerful then regular expressions because you need to track state, omething more like a Context Free Grammar (CFG). Althought you might be able to accomplish it with 'Left To Right' or non-greedy matching.

If you can use regular expressions there are many web pages out there with good info:

If you need the more complex behaviour of a CFG I would suggest using a third party tool, unfortunately I don't know of a good one to recommend.

link|flag
You also have to worry about > in attribute values, comments, PIs/CDATA in XML and various common malformednesses in legacy HTML. In general [X][HT]ML is not amenable to parsing with regexps. – bobince Nov 13 '08 at 12:58
You can accomodate the > in attribute values but making attributes a part of the regular expression. It is only the complexity of nested tags that limits the usefulness of parsing with regular expressions. – vfilby Nov 16 '08 at 15:33
don't you mean <[^>]*> which matches things like <html>, and not <[^>]>* which matches things like <h>>>> ? – Greg Jun 30 at 13:16
You are correct sir, typo fixed. – vfilby Jul 13 at 19:15
vote up 6 vote down

HTTPUTility.HTMLEncode() is meant to handle encoding HTML tags as strings. It takes care of all the heavy lifting for you. From the MSDN Documentation:

If characters such as blanks and punctuation are passed in an HTTP stream, they might be misinterpreted at the receiving end. HTML encoding converts characters that are not allowed in HTML into character-entity equivalents; HTML decoding reverses the encoding. For example, when embedded in a block of text, the characters < and >, are encoded as &lt; and &gt; for HTTP transmission.

HTTPUtility.HTMLEncode() method, detailed here:

public static void HtmlEncode(
string s,
TextWriter output
)

Usage:

String TestString = "This is a <Test String>.";
StringWriter writer = new StringWriter();
Server.HtmlEncode(TestString, writer);
String EncodedString = writer.ToString();

I hope that helps.

link|flag
A really good answer George thanks, it also highlighted how poorly I asked the question first time around. Sorry. – Stuart Helwig Nov 14 '08 at 0:38
vote up 2 vote down

If you have data that has HTML tags and you want to display it so that a person can SEE the tags, use HttpServerUtility::HtmlEncode.

If you have data that has HTML tags in it and you want the user to see the tags rendered, then display the text as is. If the text represents an entire web page, use an IFRAME for it.

If you have data that has HTML tags and you want to strip out the tags and just display the unformatted text, use a regular expression.

link|flag
in php there is a function called striptags() maybe you have something similar – tharkun Nov 13 '08 at 22:46
vote up 1 vote down

The free and open source HtmlAgilityPack has a method:

var plainText = ConvertToPlainText(string html);

Feed it an HTML string like

<b>hello world!</b><br /><i>it is me! !</i>

And you'll get a plain text result like:

hello world!
it is me!
link|flag
vote up 0 vote down

You may want to use SgmlReader.

http://code.msdn.microsoft.com/SgmlReader

link|flag
vote up 0 vote down

Depends on what you mean by "html." The most complex case would be complete web pages. That's also the easiest to handle, since you can use a text-mode web browser. See the Wikipedia article listing web browsers, including text mode browsers. Lynx is probably the best known, but one of the others may be better for your needs.

link|flag
vote up -2 vote down

Hi buddy, simple as:

public static string StripTags2(string html)
    {
        return html.Replace("<", "&lt;").Replace(">", "&gt;");
    }

By this you escape all "<" and ">" in a string. Is this what you want?

link|flag
...ah. Well now the answer (along with interpretation of the ambiguous question) has completely changed, I'll pick nits at the lack of & amp; encoding instead. ;-) – bobince Nov 13 '08 at 12:50
1  
I don't think it is a good idea to reinvent the wheel - especially when your wheel is square. You should use HTMLEncode instead. – Kramii Nov 13 '08 at 15:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.