C# 程序以在字符串中查找单词的索引


声明并初始化一个数组 -

string[] str = new string[] {
   "Cat",
   "Mat",
   "Rat"
};

现在,我们使用 IndexOf() 方法查找单词“Mat”的索引 -

Array.IndexOf(str, "Mat");

以下是代码 -

示例

 在线演示

using System;

public class Demo {
   public static void Main() {
      string[] str = new string[] {
         "Cat",
         "Mat",
         "Rat"
      };
      Console.WriteLine("Our Array =");
      for (int i = 0; i < str.Length; i++) {
         string res = str[i];
         Console.WriteLine(res);
      }
      int findIndex = Array.IndexOf(str, "Mat");
      Console.Write("Element Mat found at the following index: ");
      Console.WriteLine(findIndex);
   }
}

输出

Our Array =
Cat
Mat
Rat
Element Mat found at the following index: 1

更新于: 22-6-2020

507 次浏览

开启你的 职业生涯

完成课程获得认证

开始学习
广告
© . All rights reserved.