Search
Follow Us
Categories
- News Release(3)
Find Synonyms of Words using C#
A synonym is a word that exactly or nearly means the same as another word. We normally use synonyms to avoid using the same word repeatedly. As a developer, you may need to find out all words with the same meaning for your search purpose or document analysis. This article will guide you about how to find out all the synonyms of any specific word in C# using .NET API. Additionally, you can also get different groups of these synonyms that are arranged according to the different meanings of that same word.
The following topics will be covered in this article:
- .NET API - Find Synonyms
- Get synonyms of any word in C#
- Get synonyms - Grouped by different meanings
Convert JSON to XML in C#
JSON and XML, both are the well known structured formats that are vastly used by developers to transmit data. There are many requirement where as a programmer, we need the conversion between JSON and XML data formats. In this article, you will learn how to convert JSON data into XML format using C#.
The following topics will be covered in this article:
- .NET API for JSON and XML Conversion
- Programmatically Convert JSON to XML
Extract ZIP Files Data in Java
ZIP Archives are one of the most popular and commonly used compressed file formats. The main reason for using ZIP files is to reduce the total file size and to send multiple files as a single archive. As a developer, you can extract the text, images, and even metadata from the files that are compressed within ZIP archives. In this article, we will discuss how to extract the ZIP archives data in Java.
The following topics are covered in this article:
- Java API for ZIP files data extraction.
- How to extract ZIP files data using Java.
Generate Reports from XML Data in C#
XML is a W3C Recommended, self-descriptive language that is designed to store and transport data. A developer can change the XML format into any other better human-readable format like PDF or MS Word document within the .NET application. This article will discuss how to convert XML data into PDF and MS Word reports using C# using simple templates.
The following topics are discussed in this article:
- .NET API for Generating Reports
- Generate PDF Report from XML Data using C#
- Generate MS Word DOC/DOCX Report from XML Data using C#
View Word Documents as HTML Responsive Page using C#
HTML Responsive web pages are meant to look good on different devices. These pages automatically adjust according to different screen sizes. This article will guide you to automate the conversion and view your Word documents as responsive HTML pages within your .NET applications using C#.
The following topics will be covered in this article:
- .NET API for Word and Responsive HTML viewer
- View Word Documents as Responsive HTML using C#
Extract ZIP Files Data in C#
Archives like ZIP, RAR, TAR, GZIP, BZIP2 are commonly used to store more than one file and folder in a single container. Another main reason for archive files is to reduce the total file size using compression algorithms. Just like parsing and extracting data from documents of various file formats, you can treat the archive files in the same way. You can extract the text, images, and even metadata from the files that are compressed within the archives. In this article, we will discuss how to extract the ZIP archives data using C# with your .NET applications.
The following topics are covered in this article:
- .NET API for ZIP files data extraction
- How to extract ZIP files data
Convert Excel to CSV and CSV to Excel Formats in C#
XLS and XLSX are the most used and well-known formats of MS Excel spreadsheets. You must be well aware of the enhanced capabilities and countless formatting options of Microsoft Office for these formats during this century. On the other hand, CSV files are the comma-separated-values, normally used to store tabular data without formatting. These files can be viewed in any text editor and also in MS Excel for tabular format. This article discusses the conversion of the Excel spreadsheets of XLS/XLSX format into CSV format and CSV to XLS/XLSX format programmatically using C#.
The following topics are covered in this article:
- .NET API for XLS/XLSX and CSV Conversion
- Excel to CSV Conversion
- CSV to Excel Conversion
Generate Reports from CSV Data using C#
CSV (Comma Separated Values) files are widely used for exchanging data among applications. When you want this data to be translated into presentable and meaningful information, you need to convert it into some other format. In one of our posts, we have seen how to convert CSV data in Reports using Java. This article will guide you to convert CSV data into PDF and MS Word DOC/DOCX reports using C# using a simple template.
The following topics are covered in this article:
- Report Generation .NET API
- Generate PDF Report from CSV Data
- Generate MS Word Report from CSV data
Build Full-Text Search Solution in Java
Full-text search is a way to search a text/query within a collection of documents. This approach quickly finds all instances of a term/phrase and it works by using text indexes. In this article, we will learn how to programmatically search full-text in documents using Java.
After this, you can implement various search techniques and build your search solution for word-processing documents, spreadsheets, presentations, HTML files, PDF files, eBooks, email messages, ZIP archives, and many other document formats.
The following topics are covered in this article:
- Java API for Full-Text Search
- Full-Text Search
- Perform Search in Java
- Highlight Search Results