एक स्ट्रिंग में URL की जांच के लिए C# में StartWith() विधि का उपयोग करें।
मान लें कि हमारी इनपुट स्ट्रिंग है -
string input = "https://example.com/new.html";
अब हमें www या गैर-www लिंक की जांच करने की आवश्यकता है। इसके लिए C# में if स्टेटमेंट का इस्तेमाल करें -
if (input.StartsWith("https://www.example.com") || input.StartsWith("https://example.com")) { }
उदाहरण
आप एक स्ट्रिंग में URL की जांच के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं।
using System; class Demo { static void Main() { string input = "https://example.com/new.html"; // See if input matches one of these starts. if (input.StartsWith("https://www.example.com") || input.StartsWith("https://example.com")) { Console.WriteLine(true); } } }
आउटपुट
True