Full access to Enterprise features. No credit card required.
What if You Could Automate 90% of Your Repetitive Tasks in Under 30 Days? At ServoDesk, we help businesses like yours automate operations with AI, allowing you to cut service times in half and increase productivity by 25% - without hiring more staff.
Try ServoDesk for free
All-in-One Behavioral Health EHR Software
A full-fledged, intuitive solution for CRM, EHR & RCM—specialized, flexible, and scalable.
Opus is a comprehensive EHR, CRM, and RCM platform designed to streamline operations for behavioral health treatment centers, including addiction, mental health, and SUD (substance use disorder) clinics. The platform provides integrated tools for patient management, billing, scheduling, and telehealth services. Opus enhances efficiency with features like intelligent lead routing, insurance verification, automated tasks, and customizable forms. It also includes advanced reporting, AI-driven progress note generation, and seamless lab integrations. With a focus on flexibility and scalability, Opus is ideal for small to large multi-center organizations in the behavioral health space.
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:
DomTreeNode.FindXPath('//*[@id="TopBox"]/div[1]/div[@class="draw default"]'),NodeList,ValueList)}
end;
end;
Xpath support:
attributes - //*[@id="TopBox"]/div/@class
comment - //*[@id="TopBox"]/div/comment()[3]
text - //*[@id="TopBox"]/div/text()[2]
previous level - /.....