This article shows how to scan barcode in .Net with GroupDocs.Parser with few lines of code from images, documents and other file formats like PDF, Emails, Ebooks, Words, and others....Classification Product Solution Purchase...
GroupDocs.Search supports the ability to remove indexed files and folders from an index. Only files or folders that were explicitly added to the index can be deleted....Classification Product Solution Purchase...
Character replacement during indexing can be used, for example, to convert all text to lowercase characters or to remove diacritics from text....Classification Product Solution Purchase...
This article demonstrates the merge operation which is designed to combine two or more indexes into one index to accelerate the search and to simplify the work with indexes....Classification Product Solution Purchase...
To extract metadata from emails getMetadata method is used. This method allows to extract the following metadata:
Name Description subject The email “subject” field. email-sender The email “from” field. email-to The email “to” field. May contain more than one address separated by semicolons. email-cc The email “cc” field. May contain more than one address separated by semicolons. Here are the steps to extract metadata from an email:
Instantiate Parser object for the initial email; Call getMetadata method and obtain collection of document metadata objects; Iterate through the collection and get metadata names and values....Classification Product Solution Purchase...
To extract a text from emails getText method is used. This method allows to extract a text from the entire document. Pagination and raw mode is not supported for emails.
Here are the steps to extract a text from an email:
Instantiate Parser object for the initial email; Call getText method and obtain TextReader object; Read a text from reader. Warning getText method returns null value if text extraction isn’t supported for the document....Classification Product Solution Purchase...