Delphi - 在大型 TMemo 中查找文本

发布于 2024-12-25 04:01:37 字数 544 浏览 2 评论 0原文

我有一个TMemo,其中包含相当多的文本,80M(大约400K行)。

TMemo 设置为 WordWrap = FALSE,不需要查找换行为 2 行的文本。

我需要一种快速的方法来从头开始查找文本,并查找下一个文本。

因此,我放置了一个 TEdit 来放置要查找的文本,并放置了一个 TButton 来在 TMemo 中查找文本。

我想使用 Pos() 逐行检查,但这会很慢。 我不知道如何确定当前光标位置的 TMemo.Lines[index] 。

任何人都可以想出解决方案吗?

谢谢

更新:

我从这里找到了解决方案: 在 Delphi 中搜索备忘录?

SearchText() 函数工作速度快,而且速度非常快。 花了几秒钟来搜索底部的唯一字符串。

I have a TMemo which contains quite a lot of texts, 80M (about 400K lines).

The TMemo is set with WordWrap = FALSE, there is no need to find texts that wrapped in 2 lines.

I need a fast way to find a text, from the beginning, and also find next.

So, I put a TEdit for putting the text to find and a TButton to find the text in the TMemo.

I was thinking to use Pos(), checking line by line, but that will be slow.
And I don't know how to determine the TMemo.Lines[index] for current cursor position.

Anyone can come up with solution?

Thanks

UPDATE:

I found a solution from here:
Search thru a memo in Delphi?

The SearchText() function works, fast, and very fast.
Took couple of seconds to search unique string at the bottom end.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彼岸花ソ最美的依靠 2025-01-01 04:01:37

之前的答案的一点补充:您无需选择即可获取行号找到的模式,如下所示:

procedure TForm1.Button3Click(Sender: TObject);
var
  I, L: Integer;

begin
  Memo1.WordWrap:= False;
  Memo1.Lines.LoadFromFile('Windows.pas');
  I:= Pos('finalization', Memo1.Text);
  if I > 0 then begin
    L := SendMessage(Memo1.Handle, EM_LINEFROMCHAR, I - 1, 0);
    ShowMessage('Found at line ' + IntToStr(L));
// if you need to select the text found:
    Memo1.SelStart := I - 1;
    Memo1.SelLength := Length('finalization');
    Memo1.SetFocus;
  end;
end;

请注意,行号是从零开始的,您还应该从 Pos 结果中减去 1 以获得 SendMessage 的从零开始的偏移量,并且TMemo.SelStart

A little addition to the previous answers: you can get the line number without selecting the pattern found, like this:

procedure TForm1.Button3Click(Sender: TObject);
var
  I, L: Integer;

begin
  Memo1.WordWrap:= False;
  Memo1.Lines.LoadFromFile('Windows.pas');
  I:= Pos('finalization', Memo1.Text);
  if I > 0 then begin
    L := SendMessage(Memo1.Handle, EM_LINEFROMCHAR, I - 1, 0);
    ShowMessage('Found at line ' + IntToStr(L));
// if you need to select the text found:
    Memo1.SelStart := I - 1;
    Memo1.SelLength := Length('finalization');
    Memo1.SetFocus;
  end;
end;

Note that line number is zero-based, also you should subtract 1 from Pos result to obtain zero-based offset for SendMessage and TMemo.SelStart.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文