通过Delphi中的备忘录搜索?

前端之家收集整理的这篇文章主要介绍了通过Delphi中的备忘录搜索?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何人都可以给我一些简单的代码,使我能够在备忘录中搜索一个简单的字符串,并在发现后在备忘录中突出显示它吗?

解决方法

搜索允许文档换行,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,1);

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

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

使用这样:

SearchText(Memo1,Edit1.Text,[]);

也允许搜索编辑.

原文链接:https://www.f2er.com/delphi/101659.html

猜你在找的Delphi相关文章