码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi中Unicode转中文

时间:2017-07-28 16:43:23      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:toc   top   取出   字符   pos   index   integer   string   delete   

function UnicodeToChinese(inputstr: string): string;
var
i: Integer;
index: Integer;
temp, top, last: string;
begin
index := 1;
while index >= 0 do
begin
index := Pos(‘\u‘, inputstr) - 1;
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;

Delphi中Unicode转中文

标签:toc   top   取出   字符   pos   index   integer   string   delete   

原文地址:http://www.cnblogs.com/tc310/p/7251031.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!