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

C#String.IndexOf()メソッド


C#のString.IndexOf()メソッドは、このインスタンス内で指定されたUnicode文字または文字列が最初に出現するゼロベースのインデックスを見つけるために使用されます。

構文

構文は次のとおりです-

public int IndexOf (string val);

上記のvalは検索する文字列です。

例を見てみましょう-

using System;
public class Demo {
   public static void Main(String[] args) {
      string str1 = "Jacob";
      string str2 = "John";
      Console.WriteLine("String 1 = "+str1);
      Console.WriteLine("HashCode of String 1 = "+str1.GetHashCode());
      Console.WriteLine("Index of character 'o' is str1 = " + str1.IndexOf("o"));
      Console.WriteLine("\nString 2 = "+str2);
      Console.WriteLine("HashCode of String 2 = "+str2.GetHashCode());
      Console.WriteLine("Index of character 'o' is str2 =" + str2.IndexOf("o"));
      bool res = str1.Contains(str2);
      if (res)
         Console.WriteLine("Found!");
      else
         Console.WriteLine("Not found!");
   }
}

出力

これにより、次の出力が生成されます-

String 1 = Jacob
HashCode of String 1 = -790718923
Index of character 'o' is str1 = 3
String 2 = John
HashCode of String 2 = -1505962600
Index of character 'o' is str2 =1
Not found!

別の例を見てみましょう-

using System;
public class Demo {
   public static void Main(String[] args) {
      string str1 = "Kevin";
      string str2 = "Evin";
      Console.WriteLine("String 1 = "+str1);
      Console.WriteLine("HashCode of String 1 = "+str1.GetHashCode());
      Console.WriteLine("Index of character 'k' in str1 = " + str1.IndexOf("k"));
      Console.WriteLine("\nString 2 = "+str2);
      Console.WriteLine("HashCode of String 2 = "+str2.GetHashCode());
      Console.WriteLine("Index of character 'k' in str2 =" + str2.IndexOf("k"));
      bool res = str1.Contains(str2);
      if (res)
         Console.WriteLine("Found!");
      else
         Console.WriteLine("Not found!");
   }
}

出力

これにより、次の出力が生成されます-

String 1 = Kevin
HashCode of String 1 = -768104063
Index of character 'k' in str1 = -1
String 2 = Evin
HashCode of String 2 = 1223510568
Index of character 'k' in str2 =-1
Not found!

  1. C#SingleorDefault()メソッド

    このメソッドは、シーケンスの特定の要素を1つ返します。要素がシーケンスに存在しない場合は、デフォルト値が返されます。 ここには2つの文字列配列があります。 string[] str1 = { "one" }; string[] str2 = { }; 最初の配列は単一の要素についてチェックされますが、2番目の配列は空であり、SingleorDefaultを使用してチェックされます。 str2.AsQueryable().SingleOrDefault(); 以下は、SingleorDefault()メソッドの使用法を示す例です。 例 using System; usi

  2. 文字列Join()メソッド

    文字列のJoin()メソッドは、各要素間に指定された区切り文字を使用して、文字列配列のすべての要素を連結します。 次の例では、複数行の文字列があり、区切り文字を「\n」-として設定しています。 String.Join("\n", starray); 例 以下は完全な例です- using System; namespace StringApplication {    class StringProg {       static void Main(string[] args) {     &nb