Merging data from two spreadsheet files is not a difficult task in Excel but what about if you have to combine files in large numbers? Don’t think to do it manually, just automate it. Combining two or more spreadsheets into a single one is just a job of a few lines of code. This article discusses ways how to merge Excel files and spreadsheets into a single one using C#. Further, it will also show how you can join specific sheets of different files using a similar C# code.
Merge PowerPoint Presentations & Slides in Java
Joining multiple presentations into a single one is now just a task of few lines of code. This article discusses different ways how to merge multiple PowerPoint presentations into a single one in Java. Furthermore, it will show how you can merge specific slides of two or more presentations using a similar java source code.
Merge PowerPoint Presentations & Slides using C#
Combining two or more presentations into a single one is just a few lines of code away. This article discusses different ways how to merge multiple PowerPoint presentations into a single one using C#. Further, it will also show how you can join specific slides of different presentations using a similar C# code.
Convert Word to Markdown in Java
The support of markdown files by word processing editors has increased its usage at a large scale. Hence the conversion of existing text content into markdown format is often demanded. This article discusses how to programmatically convert Word documents into markdown files in Java.
Convert Word to Markdown using C#
Word-processing documents are present in almost every device in this digital world. Similarly, almost every word processing editor started supporting the markdown format. The continuous increase of MD files as the webpages increases the transformation of Word content into websites using markdown format. This article discusses how to programmatically convert Word documents into markdown files using C#.
Extract Text from Markdown Files in Java
Developers often have requirements to extract text from various documents. We have already discussed extracting ZIP archives, counting words in documents, extracting images from eBooks, and a few other parsing ways. Today, in this article, you will learn how to parse and extract text from the Markdown files in Java.
Extract Text from Markdown Files using C#
As a programmer, we often have a requirement to get the text extracted from various kinds of documents. Previously we have discussed counting words in documents, extracting ZIP archives, extracting images from eBooks, and parsing PDF form fields. Today, in this article, you will learn how to parse and extract text from Markdown files using C#.
Convert Markdown Files to PDF in Java
Markdown is the markup language widely used for creating websites, readme files, and documents. It simply requires adding formatting elements to the plain text. It has vast compatibility that increases its usage and also its rendering requirement to other document formats. In this article, you will learn how to programmatically convert markdown files to PDF format in Java.
Convert Markdown Files to PDF using C#
Markdown is a lightweight markup language widely used to create websites, documents, and readme files by simply adding formatting elements to plain text. It is widely supported by almost all browsers and text editors. Its huge compatibility increases its usage and also its rendering to and from other portable document formats. In this article, you will learn how to programmatically convert the markdown files to PDF format using C#.
Render JSON as PDF, JPG, PNG & HTML using Java
The self-describing, easy-to-understand, and easy-to-parse, JSON format is one of the ideal choices to interchange data in web services. With this huge usage, it is often required to convert JSON data format into other formats for various requirements. In this article, we will see how to render JSON files into PDF format in Java. Furhter, we will also convert the JSON files into JPG, PNG, and HTML formats within the Java application.