Lua猎取utf8字符串长度和字符串截取并用...代替__第1页
Lua猎取utf8字符串长度和字符串截取并用...代替__第2页
Lua猎取utf8字符串长度和字符串截取并用...代替__第3页
Lua猎取utf8字符串长度和字符串截取并用...代替__第4页
免费预览已结束,剩余1页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、Lua猎取utf8字符串长度和字符串截取并用.代替_ 这篇文章主要介绍了Lua猎取utf8字符串长度和字符串截取并用.代替,本文挺直给出两个函数的实现代码,需要的伴侣可以参考下 一、LUA猎取utf8字符串长度 代码如下: - 猎取utf8编码字符串正确长度的方法 - param str - return number function utfstrlen(str) local len = #str; local left = len; local cnt = 0; local arr=0,0xc0,0xe0,0xf0,0xf8,0xfc; while left = 0 do local tm

2、p=string.byte(str,-left); local i=#arr; while arri do if tmp=arri then left=left-i;break;end i=i-1; end cnt=cnt+1; end return cnt; end 二、截取给定字符串的部分长度,超出部分用省略号“.”替换 代码如下: 切割字符串,并用“.”替换尾部 sName:要切割的字符串 nMaxCount,字符串上限,中文字为2的倍数 nShowCount:显示英文字个数,中文字为2的倍数,可为空 函数实现:截取字符串一部分,剩余用“.”替换 function GetShortNam

3、e(sName,nMaxCount,nShowCount) if sName = nil or nMaxCount = nil then return end local sStr = sName local tCode = local tName = local nLenInByte = #sStr local nWidth = 0 if nShowCount = nil then nShowCount = nMaxCount - 3 end for i=1,nLenInByte do local curByte = string.byte(sStr, i) local byteCount

4、= 0; if curByte0 and curByte=127 then byteCount = 1 elseif curByte=192 and curByte223 then byteCount = 2 elseif curByte=224 and curByte239 then byteCount = 3 elseif curByte=240 and curByte=247 then byteCount = 4 end local char = nil if byteCount 0 then char = string.sub(sStr, i, i+byteCount-1) i = i

5、 + byteCount -1 end if byteCount = 1 then nWidth = nWidth + 1 table.insert(tName,char) table.insert(tCode,1) elseif byteCount 1 then nWidth = nWidth + 2 table.insert(tName,char) table.insert(tCode,2) end end if nWidth nMaxCount then local _sN = local _len = 0 for i=1,#tName do _sN = _sN . tNamei _len = _len + tCodei if _len = nS

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论