Sort Score
Result 10 results
Languages All
Labels All
Results 141 - 150 of 30,035 for

parser

(0.18 sec)
  1. Detect file type of container item | Documentation

    This article explains that how to detect file type of container item....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...

    docs.groupdocs.com/parser/java/detect-file-type...
  2. Extract text areas | Documentation

    This article explains that how to extract text areas from documents in Java....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...

    docs.groupdocs.com/parser/java/extract-text-areas/
  3. Loading specific file formats | Documentation

    In some cases it’s required to specify the document format manually to guarantee correct output produced by GroupDocs.Parser. The following are the cases when the document format must be specified manually: Markdown documents MHTML documents OTP documents (OpenDocument Presentation Template) Databases Emails from remote servers Here are the steps to specify the document format for Markup document. Instantiate the LoadOptions object and pass the document format in LoadOptions(FileFormat) constructor; Create Parser object and call any method....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...

    docs.groupdocs.com/parser/java/loading-specific...
  4. Extract attachments from PDF portfolios | Docum...

    Extract attachments from PDF portfolios To extract attachments from emails getContainer method is used. This method returns the collection of ContainerItem objects. Here are the steps to extract an attachment text from PDF Portfolios: Instantiate Parser object for the initial document; Call getContainer method and obtain collection of ContainerItem objects; Check if collection isn’t null (container extraction is supported for the document); Iterate through the collection and get container item names, sizes and obtain content....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...

    docs.groupdocs.com/parser/java/extract-attachme...
  5. Extract emails from Outlook Storage | Documenta...

    Extract emails from Outlook using GroupDocs.Parser for .NET...Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for .NET /...

    docs.groupdocs.com/parser/net/extract-emails-fr...
  6. Extract attachments from Emails | Documentation

    Extract attachments from Emails To extract attachments from emails getContainer method is used. This method returns the collection of ContainerItem objects. Email Attachment can contain the following metadata: Name Description content-type The MIME type of the attachment content These metadata refer to a container element itself, not a document. Here are the steps to extract an email text from email attachments: Instantiate Parser object for the initial document; Call getContainer method and obtain collection of ContainerItem objects; Check if collection isn’t null (container extraction is supported for the document); Iterate through the collection and obtain Parser object to extract a text....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...

    docs.groupdocs.com/parser/java/extract-attachme...
  7. Search text in Microsoft Office PowerPoint pres...

    This article explains that how to search text from Microsoft Office PowerPoint(.ppt, .pptx) presentations...Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for .NET /...

    docs.groupdocs.com/parser/net/search-text-in-mi...
  8. Search text in Microsoft Office PowerPoint pres...

    To search a keyword in Microsoft Office PowerPoint presentations search(String) method is used. This method returns the collection of SearchResult objects. For details, see Search Text. Here are the steps to search a keyword in Microsoft Office PowerPoint presentation: Instantiate Parser object for the initial presentation; Call search(String) method and obtain the collection of SearchResult objects; Iterate through the collection and get the position and text. Warning search(String) method returns null value if search isn’t supported for the presentation....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...

    docs.groupdocs.com/parser/java/search-text-in-m...
  9. Search text in Microsoft Office Excel spreadshe...

    To search a keyword in Microsoft Office Excel spreadsheets search(String) method is used. This method returns the collection of SearchResult objects. For details, see Search Text. Here are the steps to search a keyword in Microsoft Office Excel spreadsheet: Instantiate Parser object for the initial spreadsheet; Call search(String) method and obtain the collection of SearchResult objects; Iterate through the collection and get the position and text. Warning search(String) method returns null value if search isn’t supported for the spreadsheet....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...

    docs.groupdocs.com/parser/java/search-text-in-m...
  10. Load document from local disk | Documentation

    GroupDocs.Parser provides the functionality to extract data from documents on the local disk. The following example shows how to load the document from the local disk: // Set the filePath String filePath = Constants.SamplePdf; // Create an instance of Parser class with the filePath try (Parser Parser = new Parser(filePath)) { // Extract a text into the reader try (TextReader reader = Parser.getText()) { // Print a text from the document // If text extraction isn't supported, a reader is null System....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...

    docs.groupdocs.com/parser/java/load-document-fr...