C# で StartWith() メソッドを使用して、文字列内の URL を確認します。
入力文字列が −
string input = "https://example.com/new.html";# であるとしましょう。 ## 次に、www リンクまたは非 www リンクをチェックする必要があります。これを行うには、C# で if ステートメントを使用します。 -
if (input.StartsWith("https://www.example.com") || input.StartsWith("https://example.com")) { }Example次のコードを実行して、文字列内の 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
以上が文字列内の URL をチェックする C# プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。