vote up 0 vote down star

Hi,

I'm using Delphi 2009 and want to decode an HTML encoded string, for example:

' -> '

But cannot find any built in function for doing this.

Thanks in advance

flag

40% accept rate
What HTML parsing library are you using? Doesn't it come with such a function? – Rob Kennedy Nov 1 at 13:53
Hi Rob, I'm using Winninet for getting the data from the website. – tekBlues Nov 1 at 14:42
That's not what I asked. Once you download the resource from the Web server, what library are you using to parse it? What do you use the turn the sequence of characters into something meaningful? (And if you're not using anything, why aren't you?) – Rob Kennedy Nov 1 at 15:43
It's a JSON file, and I'm using the Superobject JSON object for Delphi. – tekBlues Nov 1 at 20:49

3 Answers

vote up 6 vote down check

Look at the HTTPApp unit. HTTPDecode and HTMLDecode (as well as the Encode functions). You should find this in your Source/Win32/Internet folder.

link|flag
vote up -1 vote down

This is a prototype function. Didn't check the validity. Just absorb the idea.

function HtmlDecode(const AStr: string) : char;
var
 iPos : integer;
begin
  iPos := AnsiPos(';', AStr);
  Result := Chr(StrToInt(Copy(AStr, 3, iPos)));
end;

Bye!

link|flag
vote up 0 vote down

Here's my HTMLDecode procedure (slightly modified from CGs HTTPApp unit):

function HTMLDecode(const AStr: String): String;
var
  Sp, Rp, Cp, Tp: PChar;
  S: String;
  I, Code: Integer;
begin
  SetLength(Result, Length(AStr));
  Sp := PChar(AStr);
  Rp := PChar(Result);
  Cp := Sp;
  try
    while Sp^ <> #0 do
    begin
      case Sp^ of
        '&': begin
               Cp := Sp;
               Inc(Sp);
               case Sp^ of
                 'a': if AnsiStrPos(Sp, 'amp;') = Sp then  { do not localize }
                      begin
                        Inc(Sp, 3);
                        Rp^ := '&';
                      end;
                 'l',
                 'g': if (AnsiStrPos(Sp, 'lt;') = Sp) or (AnsiStrPos(Sp, 'gt;') = Sp) then { do not localize }
                      begin
                        Cp := Sp;
                        Inc(Sp, 2);
                        while (Sp^ <> ';') and (Sp^ <> #0) do
                          Inc(Sp);
                        if Cp^ = 'l' then
                          Rp^ := '<'
                        else
                          Rp^ := '>';
                      end;
                 'n': if AnsiStrPos(Sp, 'nbsp;') = Sp then  { do not localize }
                      begin
                        Inc(Sp, 4);
                        Rp^ := ' ';
                      end;
                 'q': if AnsiStrPos(Sp, 'quot;') = Sp then  { do not localize }
                      begin
                        Inc(Sp,4);
                        Rp^ := '"';
                      end;
                 '#': begin
                        Tp := Sp;
                        Inc(Tp);
                        while (Sp^ <> ';') and (Sp^ <> #0) do
                          Inc(Sp);
                        SetString(S, Tp, Sp - Tp);
                        Val(S, I, Code);
                        Rp^ := Chr((I));
                      end;
                 else
                   Exit;
               end;
           end
      else
        Rp^ := Sp^;
      end;
      Inc(Rp);
      Inc(Sp);
    end;
  except
  end;
  SetLength(Result, Rp - PChar(Result));
end;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.