delphi 中 unicode 转汉字 函数


本文整理自网络,侵删。

 近期用到这个函数,无奈没有找到 delphi 自带的,网上找了下 有类似的,没有现成的,我需要的是 支持 “\u4f00 ” 这种格式的,即前面带标准的 “\u”  于是改造了一下。

下面是 解码 函数:

方便有需要的人吧,我自己也需要^_^

复制代码
 /// 
    /// // 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;
   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;

 

来源:https://www.cnblogs.com/forcoder/p/4286345.html

相关阅读 >>

Delphi fmx 截图

Delphi 控制台 输入输出实例代码

Delphi playsound()函数应用

Delphi winsock 域名获取远程服务器ip

Delphi tms web core webmemo 横竖滚动条

Delphi 清空文件夹

Delphi 用wininet 单元实现 post提交数据

Delphi中提取网址链接分路径

Delphi vcl图像的二值化

Delphi sender 的用法举例

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...