.NET कोर में WebUtility.HtmlDecode प्रतिस्थापन


91

मुझे .NET कोर (MVC6) में HTML वर्णों को डीकोड करने की आवश्यकता है। ऐसा लगता है कि .NET कोर में WebUtility.HtmlDecode फ़ंक्शन नहीं है, जिसका उपयोग हर कोई उस उद्देश्य से पहले करता था। क्या .NET कोर में कोई प्रतिस्थापन मौजूद है?



2
@duDE, वह .NET 4. के बजाय .NET कोर पूछ रहा है

मेरे जवाब पर एक नजर। यह नेटपुट के रूप में .net कोर के webutility.htmld timecode का प्रतिस्थापन है।

जवाबों:


115

यह System.Net.WebUtility class में है (.NET मानक 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);
}


8
.NET कोर 1.1 के लिए nuget.org/packages/Microsoft.AspNetCore.WebUtilities
wolfyuk

4
.NET Core 2.1 के लिए नीचे गेरार्डो की प्रतिक्रिया देखें, कोई अन्य नगेट पैकेज स्थापित करने की आवश्यकता नहीं है।
व्लाद Iliescu

33

यह नेट कोर 2.0 में है

using System.Text.Encodings.Web;

और इसे कॉल करें:

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

अद्यतन : .Net कोर 2.1 में भी:

using System.Web;

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

HttpUtility.HtmlEncode और HttpUtility.HtmlDecode तरीके भी हैं।
xhafan

16

मैं काम करने के लिए WebUtility लाइब्रेरी में HtmlDecode फ़ंक्शन पाया है।

System.Net.WebUtility.HtmlDecode(string)

3

आपको संदर्भ जोड़ने की आवश्यकता है System.Net.WebUtility

  • यह पहले से ही .Net कोर 2 ( Microsoft.AspNetCore.All) में शामिल है

  • या आप .Net Core 1 के लिए NuGet - पूर्वावलोकन संस्करण से स्थापित कर सकते हैं ।

इसलिए उदाहरण के लिए, आपका कोड नीचे की तरह दिखेगा

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

3
या बस कॉल करें WebUtility.HtmlDecodeइसका विस्तार विधि में लपेटने का कोई कारण नहीं है ...
जेमी रीस

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);
    }
}

आप डिकोडिंग या एन्कोडिंग के लिए HttpUtility कक्षा का उपयोग कर सकते हैं .net core

आशा है कि यह काम करेगा।


हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.