PlainTextExtractor implements TextExtractorInterface
A simple text extractor to extract text from plain text files.
Attributes
Table of Contents
Interfaces
- TextExtractorInterface
- Interface for text extractors, which are registered as tagged services via the #[AsTextExtractor] attribute or the 'fal.text_extractor' service tag.
Methods
- canExtractText() : bool
- Checks if the given file can be read by this extractor
- extractText() : string
- The actual text extraction.
Methods
canExtractText()
Checks if the given file can be read by this extractor
public
canExtractText(FileInterface $file) : bool
Parameters
- $file : FileInterface
Return values
boolextractText()
The actual text extraction.
public
extractText(FileInterface $file) : string
Parameters
- $file : FileInterface