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

Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式)

时间:2021-05-24 00:03:23      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rto   class   bsp   取出   eset   index   highlight   unicode编码   编码范围   

Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式)

1、UniCode转汉字

function UnicodeToChinese(sStr: string): string;
var
  i: Integer;
  index: Integer;
  temp, top, last: string;
begin
  index := 1;
  while index >= 0 do
  begin
    index := Pos(‘\u‘, sStr) - 1;
    if index < 0 then         //非 unicode编码不转换 ,自动过滤
    begin
      last := sStr;
      Result := Result + last;
      Exit;
    end;
    top := Copy(sStr, 1, index); // 取出 编码字符前的 非 unic 编码的字符,如数字
    temp := Copy(sStr, index + 1, 6); // 取出编码,包括 \u,如\u4e3f
    Delete(temp, 1, 2);
    Delete(sStr, 1, index + 6);
    Result := Result + top + WideChar(StrToInt(‘$‘ + temp));   
  end;
end;

2、汉字转UniCode  

function ChineseToUniCode(sStr: string): string;     //汉字的 UniCode 编码范围是: $4E00..$9FA5     作者:滔Roy
var
  w:Word;
  hz:WideString; 
  i:Integer;
  s:string;
begin
  hz:=sStr;  
  for i:=1 to Length(hz) do begin
    w := Ord(hz[i]);  
    s:=IntToHex(w, 4);   
    Result := Result +‘\u‘+ LowerCase(s);  
  end;
end;

3、示例:

var  
  s,s1,s2 : string;
begin
  s1 := ‘滔Roy‘;
  s2 := ‘\u6ed4\u0052\u006f\u0079‘;
  
  s:=ChineseToUniCode(s1);  {汉字到 UniCode 编码}
  s:=UnicodeToChinese(s2);  { UniCode 编码到汉字}  
end;

  

  

 

 

创建时间:2021.05.04  更新时间:

Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式)

标签:rto   class   bsp   取出   eset   index   highlight   unicode编码   编码范围   

原文地址:https://www.cnblogs.com/guorongtao/p/14729102.html

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