关于不同类型字符的转换

Posted 耗喜天涯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于不同类型字符的转换相关的知识,希望对你有一定的参考价值。

一、string转为ansistring
1、直接赋值 (有警告)
2、ansistring()类型强制转换。(无警告)

二、ansistring 转为string

1、直接赋值 (有警告)
2、string()类型强制转换。(无警告)

三、string 转为Tbytes

1、bytes:= bytesof(str) 已转为ansi编码
2、bytes:= widebytesof(str) UNICODE 编码

四、ansistring 转为Tbytes

1、bytes:= bytesof(str) ansi编码
2、bytes:= widebytesof(string(str)) UNICODE 编码

五、Tbytes 转为string

1、 str:=stringof(bytes) Tbytes 为ansi编码
2、 str:=widestringof(bytes) Tbytes 为unicode编码

六、PChar转String

用StrPas函数,StrPas(PChar):AnsiString;

============================================

Indy10 IdudpServer获取字符串string类型数据,采用Read事件,TIdBytes类型的使用,支持中文,双字节。

indy10变化相当大,都不会用了。开始被Tidbytes这个类型搞晕。

Indy10 IdudpServer使用

uses IDGlobal;

 

Read事件主要代码:

s:=enutf8.getting(adata);

 

以上是关于关于不同类型字符的转换的主要内容,如果未能解决你的问题,请参考以下文章

关于JavaScript中的相等全等操作符

Char类型与Sting类型的数字字符转换时的不同点

不同数据类型之间的隐含转换

Java不同类型字符转换String/int/Float/////

Java 8:将具有字符串值的映射转换为包含不同类型的列表

spring类型转换器(三)