本文整理自网络,侵删。
function StrToASCII10(s: string): string; //字符串转换ascii码10进制var i:integer;begin for i:=1 to length(s) do begin result:= result + inttostr(ord(s[i])); end;end; 相关阅读 >>
Delphi mysql里Delphi事件类型转unix时间戳
Delphi 查看字符串在不同编码(ascii、unicode、utf7、utf8、default、bigendianunicode)下的 hex
更多相关阅读请进入《Delphi》频道 >>