How can I decode HTML characters in C#?

前端 未结 10 2052
夕颜
夕颜 2020-11-22 03:38

I have email addresses encoded with HTML character entities. Is there anything in .NET that can convert them to plain strings?

10条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-22 03:45

    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
    

提交回复
热议问题