本文整理自网络,侵删。
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;
相关阅读 >>
Delphi2010 关于record类型rtti反射的用途和方法
Delphi xe5 for android memo控件 无法读取txt文件
在一个exe文件中查找指定内容,找到则返回起始位置,否则返回0
Delphi 读取流 image1 stream 加载到image2 timage 对象
Delphi屏蔽win、ctrl_esc、alt_tab、alt_f4等键(windows xp、windows 2003 server下测试通过)
Delphi 调试ios时出现 please specify exact device preset uuid
Delphi google text to speech api
更多相关阅读请进入《Delphi》频道 >>