替换怎么实现
哪为兄弟可以把替换的方法写一下吗,就是做得好象记事本的替换一样
int a=this.textBox1.Text.IndexOf(this.textBox2.Text,0,this.textBox2.Text.Length);
if(a!=-1)
{
this.textBox1.Select(a,this.textBox2.Text.Length);
this.textBox1.SelectedText=this.textBox3.Text;
}