指定された文字列内に文字列が存在するかどうかを確認するために使用されるメソッドは、C# では Contains() メソッドと呼ばれます。指定された文字列内に文字列が存在する場合は true が返され、文字列が指定された文字列内に存在しない場合は true が返されます。文字列を指定すると false が返されるため、戻り値の型は System になります。ブール値と ArgumentNullException が発生します。入力文字列内に文字列が出現するかどうかをチェックする必要がある入力文字列が null で、指定された文字列が出現するかどうかの文字列のチェックは大文字と小文字の区別に基づいて行われる場合。
構文:
public bool Contains(String string)
ここで、string は、その中に文字列が出現するかどうかをチェックする必要がある指定された文字列です。
Bool は Contains メソッドによって返されるブール値で、指定された文字列内に文字列が存在する場合は true に設定され、指定された文字列内に文字列が存在しない場合は false に設定されます。
以下は C# Contains() の例です:
指定された文字列をチェックして、指定された文字列内の文字列の出現を見つける Contains() メソッドを示す C# プログラム。
コード:
using System; //a class called program is defined public class program { //main method is called public static void Main(string[] args) { //a string variable is used to store the string which will be checked to find the occurrence of another string within it string st1 = "C Sharp"; //another string variable is used to store the string which will be checked for in the given string string st2 = " "; //another string variable is used to store the string which will be checked for in the given string string st3 = "Welcome"; //Contains() method is used to check the string for the occurrence of another string within it Console.WriteLine("If there is occurrence of the string in the given string:{0} ", st1.Contains(st2)); Console.WriteLine("If there is occurrence of the string in the given string:{0} ",st1.Contains(st3)); } }
出力:
説明: 上記のプログラムでは、program というクラスが定義されています。次に main メソッドが呼び出され、その中で文字列変数を使用して文字列を格納し、その中で別の文字列が出現するかどうかをチェックします。次に、別の文字列変数を使用して、最初の文字列内で出現が検索される文字列を格納します。次に、別の文字列変数を使用して、最初の文字列内で出現が検索される文字列を格納します。次に、Contains() メソッドを使用して、文字列内に別の文字列が存在するかどうかをチェックします。最初の文字列内に別の文字列が存在する場合は true が返され、その中に別の文字列が存在しない場合は false が返されます。
指定された文字列をチェックして、指定された文字列内の文字列の出現を見つける Contains() メソッドを示す C# プログラム。
コード:
using System; //a class called program is defined public class program { //main method is called public static void Main(string[] args) { //a string variable is used to store the string which will be checked to find the occurrence of another string within it string st1 = "Welcome to C Sharp"; //another string variable is used to store the string which will be checked for in the given string string st2 = "#"; //another string variable is used to store the string which will be checked for in the given string string st3 = "Welcome"; //Contains() method is used to check the string for the occurrence of another string within it Console.WriteLine("If there is occurrence of the string in the given string:{0} ", st1.Contains(st2)); Console.WriteLine("If there is occurrence of the string in the given string:{0} ",st1.Contains(st3)); } }
出力:
説明: 上記のプログラムでは、program というクラスが定義されています。次に main メソッドが呼び出され、その中で文字列変数を使用して文字列を格納し、その中で別の文字列が出現するかどうかをチェックします。次に、別の文字列変数を使用して、最初の文字列内で出現が検索される文字列を格納します。次に、別の文字列変数を使用して、最初の文字列内で出現が検索される文字列を格納します。次に、Contains() メソッドを使用して、文字列内に別の文字列が存在するかどうかをチェックします。最初の文字列内に別の文字列が出現する場合は true が返され、その中に別の文字列が出現しない場合は false が返されます。
このチュートリアルでは、Contains() メソッドの定義、Contains() メソッドの構文、プログラミング例とその出力を通じて Contains() メソッドの動作を通じて C# の Contains() メソッドの概念を理解します。
これは C# Contains() のガイドです。ここでは、C# Contains() メソッドの概要とその動作について、例とコード実装とともに説明します。詳細については、他の推奨記事を参照することもできます –
以上がC# には () が含まれますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。