Simple SourceDS RCON is an easy to use tool to remote controll your Source Dedicated Server.
Simple SourceDS RCON is open-source software developed by marcsello and distributed under the Creative Commons Attribution-NonCommercial-ShareAlike 2.0.
This tool is written in Pascal (Lazarus) and it can be compiled on Windows and Linux without any modifications.
Delphi HTML Parser
This module lets you work with HTML documents as DOM tree and use XPath for searching tags.
It is very simple way to parse HTML.
This tested with version Delphi XE5,6
Usage
Add in Uses parser.pas;
begin
HtmlTxt:= ''; //here your html
NodeList:= TNodeList.Create;
ValueList:= TStringList.Create;
DomTree:= TDomTree.Create;
DomTreeNode:= DomTree.RootNode;
If DomTreeNode.RunParse(HtmlTxt) then
begin
{your code
example:
...