一、string轉為ansistring
1、直接賦值 (有警告)
2、ansistring()類型強制轉換。(無警告)
二、ansistring 轉為string
2、ansistring()類型強制轉換。(無警告)
1、直接賦值 (有警告)
2、string()類型強制轉換。(無警告)
三、string 轉為Tbytes
2、string()類型強制轉換。(無警告)
1、bytes:= bytesof(str) 已轉為ansi編碼
2、bytes:= widebytesof(str) UNICODE 編碼
四、ansistring 轉為Tbytes
2、bytes:= widebytesof(str) UNICODE 編碼
1、bytes:= bytesof(str) ansi編碼
2、bytes:= widebytesof(string(str)) UNICODE 編碼
五、Tbytes 轉為string
2、bytes:= widebytesof(string(str)) UNICODE 編碼
1、 str:=stringof(bytes) Tbytes 為ansi編碼
2、 str:=widestringof(bytes) Tbytes 為unicode編碼
六、PChar轉String
2、 str:=widestringof(bytes) Tbytes 為unicode編碼
用StrPas函數,StrPas(PChar):AnsiString;