此字符串分割函数用delphi编写,可以适应字符串中存在双字节字符和单字节字符。
function TricheditEfm.SplitString(source:string;Sleng:Integer):TStringlist;stdcall; //字符串分割函数,按字符串长度分割 var copycount,i:Integer; //每个汉字占用两个字节长度 copystr:string; stringlist:Tstringlist; begin Stringlist:=Tstringlist.Create; while length(source)>Sleng do begin copystr:=copy(source,1,Sleng); //以Sleng为长度截取字符串 if (ord(bytetype(copystr[Sleng],1))=1) then //如果最后一个字节是汉字 begin copycount:=0; for i:=0 to Sleng-1 do if not (ord(bytetype(copystr[i],1))=1) then INC(copycount); if copycount mod 2 <>0 then //有奇数个单字节字符,则说明是汉字的前半串 begin stringlist.Add(copy(Source,1,Sleng+1)); source:=copy(source,Sleng+2,length(source)-Sleng-1); end else //有偶数个单字节字符,则说明是汉字的后半串 begin stringlist.Add(copy(Source,1,Sleng)); source:=copy(source,Sleng+1,length(source)-Sleng); end; end else //如果最后一个字节是单字节字符 begin stringlist.Add(copy(Source,Sleng)); source:=copy(source,length(source)-Sleng); end; end; result:=Stringlist; Stringlist.Add(source); end;
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。