C#
 Computer >> コンピューター >  >> プログラミング >> C#

文字列内のURLをチェックするC#プログラム


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")) {
}
次のコードを実行して、文字列内の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

  1. 文字列が回文であるかどうかをチェックするPythonプログラム

    文字列が与えられた場合、私たちのタスクは、この文字列が回文であるかどうかを確認することです。 アルゴリズム Step1: Enter string as an input. Step2: Using string slicing we reverse the string and compare it back to the original string. Step3: Then display the result. サンプルコード my_string=input("Enter string:") if(my_string==my_string[::-1]): &nbs

  2. 文字列内のURLをチェックするPythonプログラム

    この場合、Pythonでreモジュールを使用します。ここでは、文字列を受け入れ、文字列にantURLが含まれているかどうかを確認します。 URLが文字列に含まれている場合は、を表示します。この問題を解決するためにfindall()メソッドを使用します。 アルゴリズム Step 1: given string as input. Step 2: findall() function is return all non-overlapping matches of pattern in string and in this function the string is scanned left t