我在尝试替换与rich text box
. 这是我使用的代码
public static void ReplaceAll(RichTextBox myRtb, string word, string replacer)
{
int index = 0;
while (index < myRtb.Text.LastIndexOf(word))
{
int location = myRtb.Find(word, index, RichTextBoxFinds.None);
myRtb.Select(location, word.Length);
myRtb.SelectedText = replacer;
index++;
}
MessageBox.Show(index.ToString());
}
private void btnReplaceAll_Click(object sender, EventArgs e)
{
Form1 text = (Form1)Application.OpenForms["Form1"];
ReplaceAll(text.Current, txtFind2.Text, txtReplace.Text);
}
这很好用,但是当我尝试用它自己和另一个字母替换一个字母时,我注意到了一个小故障。
例如,我想e
用.Welcome to Nigeria
ea
这就是我得到Weaalcomeaaaaaaa to Nigeaaaaaaaaaaaaaaria
的。
23
当只有三个时,消息框会显示e
。请问我做错了什么,我该如何纠正