黑马程序员技术交流社区

标题: 关于字符串操作 [打印本页]

作者: 宋健    时间: 2013-3-12 08:50
标题: 关于字符串操作
让用户输入一句话,找出所有e的位置;
例如"abceeheterrrreue",
分别输出e出现的位置
作者: 朱君    时间: 2013-3-12 09:13
string str="abceeheterrrreue";
char[] ch=str.ToCharArray();
for(int i=0;i<ch.count;i++)
{
    if(ch[i]=='e')
    {
    Console.Write(i+1);
    Console.Write(" ");
     }
}
作者: 孔健    时间: 2013-3-12 11:35
完整代码:
  1. static void Main(string[] args)
  2.         {
  3.             string str = "asdfasdferqwergadfqe";
  4.             List<int> list = new List<int>();//用于存储e的位置
  5.             //遍历字符串中的每一个字符
  6.             for (int i = 0; i < str.Length; i++)
  7.             {              
  8.                 if (str[i] == 'e')
  9.                 {
  10.                     list.Add(i);                    
  11.                 }
  12.             }
  13.             //遍历字符e在字符串中的所有下标位置
  14.             for (int index = 0,i=1; index < list.Count; index++,i++)
  15.             {               
  16.                 Console.WriteLine("共有{0}个e,第{1}次出现位置的索引为:{2}",list.Count, i, list[index]);               
  17.             }         
  18.             Console.ReadKey();
  19.         }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2