C#程序查找字符串中单词的索引
声明并初始化一个数组-
string[] str = new string[] {
"Cat",
"Mat",
"Rat"
};现在,用ueIndexOf()方法找到单词“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
热门推荐
3 万寿祝福语简短
10 结婚喜庆的祝福语简短
11 奶奶生日感恩祝福语简短
12 元旦联谊祝福语简短精辟
13 关于好的祝福语简短
14 对儿子祝福语简短精辟
15 航空公司祝福语简短
16 好朋友夫妻祝福语简短
17 参加婚礼祝福语大全简短
18 鼓掌祝福语简短10字