Search HTML Formats in C++
Native and high performance HTML document search using server-side Aspose.Words for C++ APIs, without the use of any software like Microsoft or Adobe PDF.
How to Search HTML File Using C++
In order to search HTML file, we’ll use
API which is a feature-rich, powerful and easy to use document searching API for C++ platform. You can download its latest version directly, just open
package manager, search for Aspose.Words.Cpp and install. You may also use the following command from the Package Manager Console.
Command
PM> Install-Package Aspose.Words.Cpp
Steps to Search HTML Files in C++
A basic document search using Aspose.Words APIs can be done with just few lines of code.
- Load HTML file by instantiating Document Class object.
- Use get_Range()->Replace method with relevant pattern and parameters.
- Save HTML file using Save() method.
System Requirements
Aspose.Words for C++ supports on all major platforms and Operating Systems. Please make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit.
- Aspose.Words for C++ DLL referenced in your project.
Search HTML Files - C++
// Load HTML document
System::SharedPtr<Document> html = System::MakeObject<Document>(u"sourceFile.html");
// Find and replace the text
html->get_Range()->Replace(u"sad", u"bad", System::MakeObject<FindReplaceOptions>(FindReplaceDirection::Forward));
// Save the document
html->Save(u"output.html");
About Aspose.Words for C++ API
Aspose.Words API can be used to load, view and convert Microsoft Word and OpenDocument Formats like DOC, DOCX, ODT to PDF, XPS, HTML and various other formats. You can also create new documents from scratch and save them in the supported formats. Aspose.Words is a standalone API that is suitable for server side and backend systems where high performance is required. It does not depend on any software like Microsoft or OpenOffice. Online HTML Search Live Demos
HTML What is HTML File Format
HTML (Hyper Text Markup Language) is the extension for web pages created for display in browsers. Known as language of the web, HTML has evolved with requirements of new information requirements to be displayed as part of web pages. The latest variant is known as HTML 5 that gives a lot of flexibility for working with the language. HTML pages are either received from server, where these are hosted, or can be loaded from local system as well. Each HTML page is made up of HTML elements such as forms, text, images, animations, links, etc. These elements are represented by tags such as img, a, p and several others where each tag has start and end. It can also embed applications written in scripting languages such as JavaScript and Style Sheets (CSS) for overall layout representation.
Read MoreOther Supported Search Documents
Using C++, one can also search other files including.