delphi Unicode转汉字 ,支持自动过滤非 unicode编码  
官方Delphi 学习QQ群: 682628230(三千人)\n
频道

delphi Unicode转汉字 ,支持自动过滤非 unicode编码


///
    /// // Unicode转汉字 ,支持自动过滤非 unicode编码,即非 unicode编码不转换
    ///  只支持 标准的 类型 \u4e00  这种格式的 转换, 以\u 开头的
    ///  code by 猿哥哥 2015-2-11
    ///
function UnicodeToChinese(inputstr:string):string;
var
i:Integer;
index:Integer;
temp,top,last:string;
begin
  index:=1;
  //inputstr := '\'+inputstr;
  while index>=0 do
  begin
    index:= inputstr.IndexOf('\u');
    if index<0 then
    begin
      last:= inputstr;
      Result:= Result+ last;
      Exit;
    end;
    top:= Copy(inputstr,1,index); //取出 编码字符前的 非 unic 编码的字符,如数字
    temp:= Copy(inputstr,index+1,6);//取出编码,包括 \u    ,如\u4e3f
    Delete(temp,1,2);
    Delete(inputstr,1,index+6);
    result:= Result+ top+ WideChar( StrToInt('$'+ temp)) ;
  end;
end;

//用法 www.delphitop.com 搜集
procedure TForm1.FormCreate(Sender: TObject);
begin
memo1.text:=UnicodeToChinese('\u4e2d\u56fd\u4eba');
end;

推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 DelphiW.com 开发 源码 文档 技巧 All Rights Reserved
晋ICP备14006235号-8 晋公网安备 14108102000087号

执行时间: 0.041415929794312 seconds