For companies wanting a complete Data Management solution that is native to Salesforce
Verify, deduplicate, manipulate, and assign records automatically to keep your CRM data accurate, complete, and ready for business.
Learn More
Iris Powered By Generali - Iris puts your customer in control of their identity.
Increase customer and employee retention by offering Onwatch identity protection today.
Iris Identity Protection API sends identity monitoring and alerts data into your existing digital environment – an ideal solution for businesses that are looking to offer their customers identity protection services without having to build a new product or app from scratch.
RAD Tool and IDE for PHP, JSP, ASP, C++ and Java Swing
The interface supports drag and drop HTML components, javascript and scriptlet events, and generate a very fast code, with no additional softwares layers or libraries.
You can put your libraries, like jQuery. The generated code works with all browsers.
You can create and debug Applets or Java Swing applications easily with the Visual Editor of the tool. Build C++ applications.
Build an Android app from a website or embedded HTML pages
Quickly and simply create an Android application (APK) from an http/https site or embedded HTML pages with its javascript files, styles, images, etc.
nshtml2apk is software to compile progressive websites/html/web apps and stunning Android apps in just one click. No coding required. Users can use to port HTML games or web application to Android, customize them.
Delphi HTMLParser
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 - /.....