I have email addresses encoded with HTML character entities. Is there anything in .NET that can convert them to plain strings?
To decode HTML take a look below code
string s = "Svendborg Værft A/S"; string a = HttpUtility.HtmlDecode(s); Response.Write(a);
Output is like
Svendborg Værft A/S