WebUtility.HtmlDecode zamiennik w .NET Core

91

Muszę zdekodować znaki HTML w .NET Core (MVC6). Wygląda na to, że .NET Core nie ma funkcji WebUtility.HtmlDecode, której wszyscy wcześniej używali do tego celu. Czy istnieje zamiennik w .NET Core?

sibvic
źródło
2
@duDE, pyta .NET Core zamiast .NET 4.
Spójrz na moją odpowiedź. jest to zamiana webutility.htmldecode w .net core na httputility.HtmlDecode.

Odpowiedzi:

115

To jest w klasie System.Net.WebUtility (od .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);
}
Scott Dorman
źródło
4
W przypadku platformy .NET Core 2.1 zobacz odpowiedź Gerardo poniżej, nie ma potrzeby instalowania innego pakietu NuGet.
Vlad Iliescu
33

To jest w Net Core 2.0

using System.Text.Encodings.Web;

i nazwij to:

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

AKTUALIZACJA : Również w .Net Core 2.1:

using System.Web;

HttpUtility.UrlEncode(code)
HttpUtility.UrlDecode(code)
Gerardo Buenrostro González
źródło
Istnieją również metody HttpUtility.HtmlEncode i HttpUtility.HtmlDecode.
xhafan
16

Znalazłem, że funkcja HtmlDecode w bibliotece WebUtility działa.

System.Net.WebUtility.HtmlDecode(string)
rurociągi
źródło
3

Musisz dodać odniesienie System.Net.WebUtility.

  • Jest już uwzględniony w .Net Core 2 ( Microsoft.AspNetCore.All)

  • Lub możesz zainstalować z NuGet - wersja zapoznawcza dla .Net Core 1.

Na przykład Twój kod będzie wyglądał jak poniżej

public static string HtmlDecode(this string value)
{
     value = System.Net.WebUtility.HtmlDecode(value);
     return value;
}
Nguyễn Top
źródło
3
Albo po prostu zadzwoń, WebUtility.HtmlDecodenie ma powodu, aby zawijać to w metodę rozszerzającą ...
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);
    }
}

Możesz użyć HttpUtility class in .net coredo dekodowania lub kodowania.

mam nadzieję, że to zadziała.


źródło