0

我有巨大的文本文件,我逐行处理并将结果添加到 a 中StringBuilder,因此我不会在主窗体中加载单行文本。

处理完成后,我将结果转储到richtext textbox. 我想根据我拥有的关键字突出显示一些文本。我最终使用了一个字符串。查找每个单词的所有文本以突出显示它。我尝试使用 lambda 表达式 Richbox.BeginInvoke 来突出显示文本。该线程工作正常,但处理富文本框并且非常慢。

考虑到 50-100 MB 的文本,如何richtext box逐行循环并以可理解的性能突出显示其中的一些单词?

这个问题已从超级用户移出,因为它与编程相关。有一些建议的解决方案,例如: http ://www.dotnetcurry.com/ShowArticle.aspx?ID=146 和 http://www.codeproject.com/Articles/4031/Background-Highlighting-with-the-RichTextBox- the-S ,但它们对于大文本仍然效率低下。

foreach (string x in LArgs)
{
    int len =0;
    int index = 0;
    int lastIndex=0;
    output.Invoke(() => { len=output.Text.Length; });
    output.Invoke(() => { lastIndex=output.Text.LastIndexOf(x); });
    while (index < lastIndex)
    {
        output.Invoke(() => { output.Find(x, index, len, RichTextBoxFinds.None); });
        output.Invoke(() => { this.output.SelectionBackColor = Color.Yellow; });
        output.Invoke(() => { index = this.output.Text.IndexOf(x, index) + 1; });
    }
}

我添加了库并使用了以下代码:

scintilla1.Text = output.Text;

StringBuilder conf = new StringBuilder();
conf.AppendLine("<?xml version=\"1.0\" encoding=\"utf-8\" ?>");
conf.AppendLine(@"<ScintillaNET>");
conf.AppendLine("<Language Name=\"log\">");
conf.AppendLine("<lexer LexerName=\"log\">");
conf.AppendLine("<Keywords List=\"0\">");

foreach (string x in LArgs)
{
    conf.Append(x + " ");
}
//var
conf.AppendLine("</Keywords>");
conf.AppendLine(@"</lexer >");
conf.AppendLine(@"<Styles>");

conf.AppendLine(@"</Language>");
conf.AppendLine(@"</ScintillaNET>");

File.WriteAllText(AppDomain.CurrentDomain.BaseDirectory+@"ScintillaNET.xml", conf.ToString());
scintilla1.Lexing.LexerLanguageMap["log"] = "cpp";
scintilla1.ConfigurationManager.CustomLocation = AppDomain.CurrentDomain.BaseDirectory + @"ScintillaNET.xml";
scintilla1.ConfigurationManager.Language = "log";
scintilla1.ConfigurationManager.Configure();

文本已加载,但未突出显示任何文本或我稍后添加的任何文本

4

1 回答 1

1

你可以使用外部库吗?

那么Scintilla.Net呢?

这是一个基于 Scintilla(SciTE,Notepad++)的非常好的快速高亮控件

于 2013-01-28T16:20:21.083 回答