通过Delphi中的备忘录搜索?

mic*_*eal 6 delphi

任何人都可以给我一些简单的代码,使我能够在备忘录中搜索一个简单的字符串,并在发现后在备忘录中突出显示它吗?

Gol*_*rol 11

此搜索允许文档换行,case(in)敏感搜索和从光标位置搜索.

type
  TSearchOption = (soIgnoreCase, soFromStart, soWrap);
  TSearchOptions = set of TSearchOption;


function SearchText(
    Control: TCustomEdit; 
    Search: string; 
    SearchOptions: TSearchOptions): Boolean;
var
  Text: string;
  Index: Integer;
begin
  if soIgnoreCase in SearchOptions then
  begin
    Search := UpperCase(Search);
    Text := UpperCase(Control.Text);
  end
  else
    Text := Control.Text;

  Index := 0;
  if not (soFromStart in SearchOptions) then
    Index := PosEx(Search, Text, 
         Control.SelStart + Control.SelLength + 1);

  if (Index = 0) and 
      ((soFromStart in SearchOptions) or 
       (soWrap in SearchOptions)) then
    Index := PosEx(Search, Text, 1);

  Result := Index > 0;
  if Result then
  begin
    Control.SelStart := Index - 1;
    Control.SelLength := Length(Search);
  end;
end;
Run Code Online (Sandbox Code Playgroud)

即使备注未聚焦,您也可以在备忘录上设置HideSelection = False以显示选择.

使用这样:

  SearchText(Memo1, Edit1.Text, []);
Run Code Online (Sandbox Code Playgroud)

也允许搜索编辑.

  • GolezTrol:感谢HideSelection提示! (2认同)

Rob*_*ank 3

  function TForm1.FindText( const aPatternToFind: String):Boolean;
  var
    p: Integer;
  begin
    p := pos(aPatternToFind, Memo1.Text);
    Result :=  (p > 0);
    if Result then
      begin
        Memo1.SelStart := p;
        Memo1.SelLength := Length(aPatternToFind);
        Memo1.SetFocus; // necessary so highlight is visible
      end;
  end;
Run Code Online (Sandbox Code Playgroud)

如果 WordWrap 为 true,则不会跨行搜索。