我在尝试替换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
。请问我做错了什么,我该如何纠正呢
答案 0 :(得分:7)
只需这样做:
yourRichTextBox.Text = yourRichTextBox.Text.Replace("e","ea");
如果您想报告匹配数量(已替换),您可以尝试使用Regex
,如下所示:
MessageBox.Show(Regex.Matches(yourRichTextBox.Text, "e").Count.ToString());
当然,使用上述方法昂贵的内存成本,你可以使用一些循环与Regex
组合来实现某种类型的高级替换引擎:
public void ReplaceAll(RichTextBox myRtb, string word, string replacement){
int i = 0;
int n = 0;
int a = replacement.Length - word.Length;
foreach(Match m in Regex.Matches(myRtb.Text, word)){
myRtb.Select(m.Index + i, word.Length);
i += a;
myRtb.SelectedText = replacement;
n++;
}
MessageBox.Show("Replaced " + n + " matches!");
}