本文整理自网络,侵删。
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 xe5、6、7在android或者ios上使用ansistring和ansichar
Delphi winapi: inflaterect - 改变矩形大小
Delphi superobject json操作类的基本用法
更多相关阅读请进入《Delphi》频道 >>