I\'m extracting readable text from HTML into a string and I need to remove the existing text between the tags. What would be the
Try something like this:
function RemoveIEScripts(const s: string): string; var I, J: Integer; begin Result := s; I := 1; repeat I := PosEx('', Result, I+4); // 4 = Length('') until False; end;