标题:大家帮忙看一下...
只看楼主
不要害怕俊杰
Rank: 1
等 级:新手上路
帖 子:15
专家分:1
注 册:2012-9-9
结帖率:100%
已结贴  问题点数:20 回复次数:5 
大家帮忙看一下...

namespace _
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string yuan = textBox1.Text;
            string cha = textBox2.Text;
            int n=0;
            for (int i = 0; i < yuan.Length; i++)
            {
                n = yuan.IndexOf(cha, i);
                i += n;
            }
          textBox1.SelectionStart=n;
          textBox1.SelectionLength = yuan.Length;

        }
    }
}
请问我这样为什么不能选中texebox1要查找的字串,还有这样做正不正确...因为我做出来的效果是选不中要查找的字串的???
搜索更多相关主题的帖子: public private void cha 
2012-09-19 17:59
平遥小D
Rank: 2
等 级:论坛游民
帖 子:7
专家分:43
注 册:2012-7-17
得分:20 
   public partial class Form1 : Form
    {
        private String t3="";
        private Int32 n=0;
        public Form1()
        {
            InitializeComponent();
            button1.Click += new EventHandler(button1_Click);
        }

        void button1_Click(object sender, EventArgs e)
        {
          String  t1 = textBox1.Text;
          String  t2 = textBox2.Text;
            foreach (var c in t2)
            {
                for (int i = 0; i < t1.Length; i++)
                {
                    if (c == t1[i])
                    {
                        t3 = t3 + c;
                    }
                }
            }
           textBox1.Focus();
           textBox1.SelectionStart =t1.IndexOf(t3[n]) ;
           textBox1.SelectionLength = 1;
           n++;
        }
    }
2012-09-19 22:38
跳过去
Rank: 8Rank: 8
等 级:贵宾
威 望:20
帖 子:282
专家分:976
注 册:2012-8-13
得分:0 
陈俊杰啊、你MD。也跑这来啦。我还以为谁呢

光棍中.....
2012-09-20 14:25
不要害怕俊杰
Rank: 1
等 级:新手上路
帖 子:15
专家分:1
注 册:2012-9-9
得分:0 
回复 3楼 跳过去
你谁???
2012-09-20 17:32
不要害怕俊杰
Rank: 1
等 级:新手上路
帖 子:15
专家分:1
注 册:2012-9-9
得分:0 
回复 2楼 平遥小D
不用这么麻烦吧...简化一点可以哦...
2012-09-20 17:34
跳过去
Rank: 8Rank: 8
等 级:贵宾
威 望:20
帖 子:282
专家分:976
注 册:2012-8-13
得分:0 
回复 4楼 不要害怕俊杰
钟娘有

光棍中.....
2012-09-20 20:47



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-381684-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.076886 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved