码迷,mamicode.com
首页 > 其他好文 > 详细

从给定字符串中截取n个字节的字符(解决汉字截取乱码问题)

时间:2017-01-20 23:09:27      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:ring   汉字   nsis   乱码   string   function   else   bsp   get   

function GetNBytesChar(s: Ansistring; n: Integer): string;
var
  aStr: AnsiString;
  bStr: WideString;
begin
  aStr := Copy(s, 1, n);
  bStr := aStr;
  if aStr = bStr then
    Result := astr
  else
    Result := Copy(s, 1, n-1);
end;

从给定字符串中截取n个字节的字符(解决汉字截取乱码问题)

标签:ring   汉字   nsis   乱码   string   function   else   bsp   get   

原文地址:http://www.cnblogs.com/yzryc/p/6329473.html

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