完整代码:- static void Main(string[] args)
- {
- string str = "asdfasdferqwergadfqe";
- List<int> list = new List<int>();//用于存储e的位置
- //遍历字符串中的每一个字符
- for (int i = 0; i < str.Length; i++)
- {
- if (str[i] == 'e')
- {
- list.Add(i);
- }
- }
- //遍历字符e在字符串中的所有下标位置
- for (int index = 0,i=1; index < list.Count; index++,i++)
- {
- Console.WriteLine("共有{0}个e,第{1}次出现位置的索引为:{2}",list.Count, i, list[index]);
- }
- Console.ReadKey();
- }
复制代码 |