vote up 7 vote down star

I have email addresses encoded with character entities, is there anything in .net that can convert them to plain string?

flag

47% accept rate

4 Answers

vote up 16 vote down check

You can use HttpUtility.HtmlDecode

link|flag
1  
It's supposed to be in System.Web, but it isn't. I haven't touched C# for more that a year, if I get a bit more frustrated with this I'll convert them manually. – Vasil Sep 23 '08 at 18:10
It's in the .NET 2.0 version of System.Web – Mark Cidade Sep 23 '08 at 18:14
I'm using exactly 2.0, but I'm writing a console app. – Vasil Sep 23 '08 at 18:15
you can import the system.web just like I can import the system.console if I were in a web app. It works. – Scott Sep 23 '08 at 18:17
1  
I have using System.Web. In my context that namespace has only some AspPermission classes. – Vasil Sep 23 '08 at 18:23
show 1 more comment
vote up -1 vote down

Use Server.HtmlDecode to decode the HTML entities. If you want to escape the HTML, i.e. display the < and > character to the user, use Server.HtmlEncode.

link|flag
1  
There may not be a server context (i.e. when running test cases and the like) I fell in to this trap before :) – Rob Cooper Sep 23 '08 at 18:04
vote up 5 vote down

If there is no Server context (i.e your running offline), you can use HttpUtility.HtmlDecode.

link|flag
Agreed, that's why I use HttpUtility, fell into same trap =P – Quintin Robinson Sep 23 '08 at 18:07
vote up 7 vote down

As @CQ says, you need to use HttpUtility.HtmlDecode, but it's not available in a non-ASP .NET project by default.

For a non-ASP .NET application, you need to add a reference to System.Web.dll. Right-click your project in Solution Explorer, select "Add Reference", then browse the list for System.Web.dll.

Now that the reference is added, you should be able to access the method using the fully-qualified name System.Web.HttpUtility.HtmlDecode or insert a using statement for System.Web to make things easier.

link|flag

Your Answer

Get an OpenID
or

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