Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.08.26;
Скачать: CL | DM;

Вниз

Преобразование URL   Найти похожие ветки 

 
vlv ©   (2002-08-15 15:40) [0]

Как преобразовать строку web-адреса в обычную (заменить обозначения спец-символов на их изображения)?


 
panov ©   (2002-08-15 15:46) [1]

Что-то такое...


function Decode(Value: String):String;
var
i,L: Integer;
begin
Result := "";
L := 0;
for i := 1 to Length(Value) do
begin
if (Value[i]<>"%") and (Value[i]<>"+") and (L<1) then
begin
Result := Result + Value[i];
end
else
begin
if Value[i]="+" then Result := Result+" "
else if Value[i]="%" then
begin
L := 2;
if (i<Length(Value)-1) then
begin
Result := Result + Chr(StrToInt("$"+Copy(Value,i+1,2))); //Chr(HexToInt(Value[i+1])*16+HexToInt(Value[i+2]));
end;
end
else Dec(L);
end;
end;
end;



Страницы: 1 вся ветка

Текущий архив: 2002.08.26;
Скачать: CL | DM;

Наверх




Память: 0.46 MB
Время: 0.011 c
1-85118
TCrash
2002-08-14 19:08
2002.08.26
Большой .exe


1-84998
First_May
2002-08-16 09:10
2002.08.26
Опять Excel


1-85033
andrey_pst
2002-08-14 09:24
2002.08.26
Как распечатать содержимое TMemo ?


6-85143
ZyreX
2002-06-15 20:58
2002.08.26
Internet connection


14-85213
Вячеслав
2002-07-31 11:26
2002.08.26
FTP и кириллица