C#获得字符串中某个数字的位置

在字符串中获得某数字位置时,可以使用string类的IndexOf方法,该方法用来确定指定字符在字符串中的索引,如果在字符串中能找到指定字符,则返回其索引,否则返回-1。在字符串中获得数字位置的关键代码如下:string str = textBox1.Text.Trim();
int index = str.IndexOf(textBox2.Text.Trim());
if (index >= 0)
     MessageBox.Show("数字" + textBox2.Text + "在字符串中的位置为:" + (index+1), "信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
else
     MessageBox.Show("没有要查找的数字", "信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
posted @ 2009-09-07 20:06  chaobj  阅读(10381)  评论(0编辑  收藏  举报