C# में Uri.IsHexEncoding() विधि यह निर्धारित करती है कि स्ट्रिंग में एक वर्ण हेक्साडेसिमल एन्कोडेड है या नहीं।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
public static bool IsHexEncoding (string pattern, int index);
ऊपर, पैटर्न पैरामीटर जांच करने के लिए स्ट्रिंग है, जबकि इंडेक्स हेक्साडेसिमल एन्कोडिंग की जांच करने के लिए पैटर्न में स्थान है।
उदाहरण
आइए अब Uri.IsHexEncoding() विधि को लागू करने के लिए एक उदाहरण देखें -
using System; public class Demo { public static void Main(){ string pattern = "%50"; bool res = Uri.IsHexEncoding(pattern, 0); if (res) Console.WriteLine("Valid: Hexadecimal Encoded"); else Console.WriteLine("Invalid: Hexadecimal Encoded"); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Valid: Hexadecimal Encoded
उदाहरण
आइए अब Uri.IsHexEncoding() विधि को लागू करने के लिए एक और उदाहरण देखें:
using System; public class Demo { public static void Main(){ string pattern = "%60"; bool res = Uri.IsHexEncoding(pattern, 1); if (res) Console.WriteLine("Valid: Hexadecimal Encoded"); else Console.WriteLine("Invalid: Hexadecimal Encoded"); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Invalid: Hexadecimal Encoded