摘要:
问题:判断特定字符是为单字节还是双字节解决:// mbSingleByte 单字节字符 mbLeadByte 双字节字符首字节 mbTrailByte 双字节字符尾字节Edit1.Text:='0102030405060708我1112131415'; n:=Length(WideString(Edit1.Text)); ShowMessage(IntToStr(n));if ByteType(Edit1.Text,17)=mbLeadByte thenbegin //ShowMessage('汉字'); str:=leftstr(Edit1.Text,16)+ 阅读全文