groupdocs
Active member
- Joined
- Mar 8, 2016
- Messages
- 33
- Programming Experience
- 10+
Proficiently extract raw or formatted text and metadata from your Microsoft Word, PDF, Text and OneNote documents, Excel spreadsheets, PowerPoint presentations or Email and ZIP files by using the .NET text extractor API. Application developers can build a variety of apps in DotNet platform incorporating content extraction functionality with simple integration and seamless processing. Implement document parsing in your password-protected files, search text or regular expressions, obtain images, extract text areas and choose between standard or fast data extraction modes, GroupDocs.Parser for .NET offers feature rich solutions for all your document text extraction and parsing needs.
Below code snippet shows how to extract metadata from PDF documents:
Download your free trial today – https://bit.ly/2QPM8Id
Watch YouTube video tutorials of the GroupDocs API – https://bit.ly/2Dv0Os6
Below code snippet shows how to extract metadata from PDF documents:
C#:
// For complete examples and data files, please go to https://github.com/groupdocs-parser/GroupDocs.Parser-for-.NET
//get file's path
String filePath = Common.getFilePath(fileName);
PdfMetadataExtractor extractor = new PdfMetadataExtractor();
MetadataCollection metadata = extractor.ExtractMetadata(filePath);
foreach (string key in metadata.Keys)
{
Console.WriteLine(string.Format("{0} = {1}", key, metadata[key]));
}
Download your free trial today – https://bit.ly/2QPM8Id
Watch YouTube video tutorials of the GroupDocs API – https://bit.ly/2Dv0Os6