• 官方的正则表达式组件 RegularExpressions (3) : TMatchEvaluator



    unit Unit1;
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, RegularExpressions;
    
    type
      TForm1 = class(TForm)
        Memo1: TMemo;
        Button1: TButton;
        procedure Button1Click(Sender: TObject);
      private
        function MyMatchEvaluator(const Match: TMatch): string; //TMatchEvaluator = function(const Match: TMatch): string of object;
      public
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.dfm}
    
    const
      pattern = '[A-Z]+\d+';
      txt = 'AAA1 BBB2 AA11 BB22 A111 B222 AAAA';
    
    procedure TForm1.Button1Click(Sender: TObject);
    begin
      Memo1.Text := TRegEx.Replace(txt, pattern, MyMatchEvaluator); //aaa1 bbb2 aa11 bb22 a111 b222 AAAA
    end;
    
    function TForm1.MyMatchEvaluator(const Match: TMatch): string;
    begin
      Result := LowerCase(Match.Value);
    end;
    
    end.
    

  • 相关阅读:
    oracle 强杀进程
    oracle查询使用频率和磁盘消耗需要缓存大小
    Oracle定时器执行多线程
    Python
    Python- XML模块
    Python-标准库之OS模块
    Python
    Python-时间复杂度
    Python-冒泡排序
    Python-正则表达式
  • 原文地址:https://www.cnblogs.com/del/p/1998206.html
Copyright © 2020-2023  润新知