Substituição de WebUtility.HtmlDecode no .NET Core


93

Preciso decodificar caracteres HTML no .NET Core (MVC6). Parece que o .NET Core não tem a função WebUtility.HtmlDecode, que todos usavam para essa finalidade antes. Existe uma substituição no .NET Core?



2
@duDE, ele está pedindo .NET Core em vez de .NET 4.

Dê uma olhada na minha resposta. é a substituição de webutility.htmldecode no núcleo .net como httputility.HtmlDecode.

Respostas:


119

Isso está na classe System.Net.WebUtility (desde .NET Standard 1.0):

//
// Summary:
//     Provides methods for encoding and decoding URLs when processing Web requests.
public static class WebUtility
{
    public static string HtmlDecode(string value);
    public static string HtmlEncode(string value);
    public static string UrlDecode(string encodedValue);
    public static byte[] UrlDecodeToBytes(byte[] encodedValue, int offset, int count);
    public static string UrlEncode(string value);
    public static byte[] UrlEncodeToBytes(byte[] value, int offset, int count);
}



4
Para .NET Core 2.1, consulte a resposta de Gerardo abaixo, não há necessidade de instalar outro pacote nuget.
Vlad Iliescu

33

Isso está no Net Core 2.0

using System.Text.Encodings.Web;

e chamá-lo de:

$"Please confirm your account by <a href='{HtmlEncoder.Default.Encode(link)}'>clicking here</a>.");

ATUALIZAÇÃO : Também em .Net Core 2.1:

using System.Web;

HttpUtility.UrlEncode(code)
HttpUtility.UrlDecode(code)

Também existem os métodos HttpUtility.HtmlEncode e HttpUtility.HtmlDecode.
xhafan

17

Descobri que a função HtmlDecode na biblioteca WebUtility funciona.

System.Net.WebUtility.HtmlDecode(string)

4

Você precisa adicionar referência System.Net.WebUtility.

  • Já está incluído no .Net Core 2 ( Microsoft.AspNetCore.All)

  • Ou você pode instalar a partir do NuGet - versão de visualização para .Net Core 1.

Por exemplo, seu código será semelhante ao abaixo

public static string HtmlDecode(this string value)
{
     value = System.Net.WebUtility.HtmlDecode(value);
     return value;
}

3
Ou apenas chame, WebUtility.HtmlDecodenão há razão para envolvê-lo em um método de extensão ...
Jamie Rees

3
namespace System.Web
{
    //
    // Summary:
    //     Provides methods for encoding and decoding URLs when processing Web requests.
    //     This class cannot be inherited.
    public sealed class HttpUtility
    {
        public HttpUtility();
        public static string HtmlAttributeEncode(string s);
        public static void HtmlAttributeEncode(string s, TextWriter output); 
        public static string HtmlDecode(string s);
        public static void HtmlDecode(string s, TextWriter output);
        public static string HtmlEncode(string s);
        public static string HtmlEncode(object value);
        public static void HtmlEncode(string s, TextWriter output);
        public static string JavaScriptStringEncode(string value);
        public static string JavaScriptStringEncode(string value, bool addDoubleQuotes);
        public static NameValueCollection ParseQueryString(string query);
        public static NameValueCollection ParseQueryString(string query, Encoding encoding);
        public static string UrlDecode(string str, Encoding e);
        public static string UrlDecode(byte[] bytes, int offset, int count, Encoding e);
        public static string UrlDecode(string str);
        public static string UrlDecode(byte[] bytes, Encoding e);
        public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count);
        public static byte[] UrlDecodeToBytes(string str, Encoding e);
        public static byte[] UrlDecodeToBytes(byte[] bytes);
        public static byte[] UrlDecodeToBytes(string str);
        public static string UrlEncode(string str);
        public static string UrlEncode(string str, Encoding e);
        public static string UrlEncode(byte[] bytes);
        public static string UrlEncode(byte[] bytes, int offset, int count);
        public static byte[] UrlEncodeToBytes(string str);
        public static byte[] UrlEncodeToBytes(byte[] bytes);
        public static byte[] UrlEncodeToBytes(string str, Encoding e);
        public static byte[] UrlEncodeToBytes(byte[] bytes, int offset, int count);
        [Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncode(String).")]
        public static string UrlEncodeUnicode(string str);
        [Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncodeToBytes(String).")]
        public static byte[] UrlEncodeUnicodeToBytes(string str);
        public static string UrlPathEncode(string str);
    }
}

Você pode usar a HttpUtility classe em .net corepara decodificação ou codificação.

espero que funcione.


Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.