黑马程序员技术交流社区
标题:
关于字符串操作
[打印本页]
作者:
宋健
时间:
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
完整代码:
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();
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2