• 回复 "Globe" 关于 XML 编码转换的问题



    问题来源:http://www.cnblogs.com/del/archive/2011/03/24/1994029.html#2059114

    Globe 同学有这样的 XML 文件:
    <?xml version="1.0" encoding="gb2312"?> <Root> <friend name="&#x5341;&#x5E74;"></friend> <friend name="&#x66FE;&#x7D93;&#x5954;&#x653E;&#x904E;&#x30FE;&#x20;"></friend> <friend name="&#46028;&#50500;&#50752; &#45208;&#49244; &#45320; "></friend> </root>

    其中包含中文、韩文,并且有些是十六进制、有些是十进制,真实的内容应该是:
    <?xml version="1.0" encoding="GB2312"?> <Root> <friend name="十年"/> <friend name="曾經奔放過ヾ "/> <friend name="돌아와 나쁜 너 "/> </root>

    下面是把它打开并另存为标准的 UTF-8 格式 XML 的代码(使用了 DelphiXE 最新的正则表达式组件):

    unit Unit1;
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, RegularExpressions;
    
    type
      TForm1 = class(TForm)
        Button1: TButton;
        procedure Button1Click(Sender: TObject);
      private
        function MyMatchEvaluator(const Match: TMatch): string;
      public
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.dfm}
    
    procedure TForm1.Button1Click(Sender: TObject);
    const
      pattern = '&#x?[0-9A-Fa-f]{1,5};';
    var
      List: TStringList;
      reg: TRegEx;
      path,tmpName: string;
    begin
      with TOpenDialog.Create(nil) do begin
        Execute;
        path := FileName;
        Free;
      end;
      if path = '' then Exit;
    
      List := TStringList.Create;
      List.LoadFromFile(path);
      List.Text := StringReplace(List.Text, 'GB2312', 'UTF-8', [rfIgnoreCase]);
      reg := TRegEx.Create(pattern, [roCompiled]);
      List.Text := reg.Replace(List.Text, MyMatchEvaluator);
    
      tmpName := ExtractFileName(path);
      path := StringReplace(path, tmpName, 'UTF8_' + tmpName, [rfIgnoreCase]);
      Text := path;
      List.SaveToFile(path, TEncoding.UTF8);
      List.Free;
    end;
    
    function TForm1.MyMatchEvaluator(const Match: TMatch): string;
    begin
      Result := Match.Groups[1].Value;
      if Match.Value[3] = 'x' then Result := '$' + Result;
      Result := WideChar(StrToInt(Result));
    end;
    
    end.
    

  • 相关阅读:
    MFC知识点总结
    fopen函数打开文件总是返回NULL错误
    四.Windows I/O模型之重叠IO(overlapped)模型
    三.Windows I/O模型之事件选择(WSAEventSelect )模型
    二.Windows I/O模型之异步选择(WSAAsyncSelect)模型
    6.openldap客户端安装
    5.openldap设置用户本身修改密码
    4.openldap创建索引
    3.openldap生成LDAP用户
    2.openldap安装
  • 原文地址:https://www.cnblogs.com/del/p/2002746.html
Copyright © 2020-2023  润新知