如何在RichTextBox中搜索短语,并使用您指定的颜色突出显示该短语的每个实例

时间:2012-06-05 18:16:18

标签: c# winforms richtextbox

如何在RichTextBox中搜索短语并用所需的任何颜色突出显示该短语的每个实例?

1 个答案:

答案 0 :(得分:1)

根据需要替换分配给ValToSearchFor的字符串和分配给RichTextBox的SelectionColor属性的颜色。

String richText = richTextBox1.Text;
String ValToSearchFor = "duckbilledPlatypus";
int pos = 0;
pos = richText.IndexOf(ValToSearchFor, 0);
while (pos != -1) {
    richTextBox1.Select(pos, ValToSearchFor.Length);
    richTextBox1.SelectionColor = Color.Red;
    pos = richText.IndexOf(ValToSearchFor, pos + 1);
}