Delphi escape/unescape编码


本文整理自网络,侵删。

 //作者0ak/lyris 
function Escape(Str: string): string;
var
I: Integer;
begin
Result := '';
for I := 1 to Length(Str) do
Result := Result + '%' + IntToHex(Ord(Str[I]), 2);
end;
function CharToInt(C: char): Integer;
begin
if ord((C)) >= 65 then
Result := 10 + ord(C) - 65
else
Result := ord(C) - 48;
end;
function HexToInt(Str: string): longint;
var
I: Integer;
p1: array[0..1] of Char;
begIn
Result := 0;
Str := Trim(Str);
for I := 1 to length(Str) do
begIn
StrPcopy(p1, Copy(Str, I, 1));
Result := Result * 16 + CharToInt(p1[0]);
end;
end;
function unescape(Str: string): string;
begin
Result := '';
while Length(Str) >= 3 do
begin
Str[1] := '#';
Result := Result + Chr(HexToInt(Copy(Str, 1, 3)));
Delete(Str, 1, 3);
end;
end;

相关阅读 >>

Delphi excel数据导入数据库表

Delphi shellexecute最简单的结束进程代码

Delphi 图像翻转

Delphi使用文件拖放功能

Delphi读取utf8格式ini及取得动态�热�

Delphi 如何将颜色值转换为灰度颜色值?

Delphi 获取当前输入法

Delphi 系统服务运行桌面用户指定程序

Delphi如何获得当前操作系统语言环境

tidhttpresponseinfo 中文乱码问题解决

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...