There are two helper functions to process a RTF file: one that does minimal processing
and sends you the data as it appears in the file, and one that sends you preprocessed
results upon significant state changes.
The former makes you do more work, but also exposes (almost) the whole file to you (it is still partially processed). The latter lets you just get down to business processing the text, but is not a complete implementation.
There are two helper functions to process a RTF file: one that does minimal processing and sends you the data as it appears in the file, and one that sends you preprocessed results upon significant state changes.
The former makes you do more work, but also exposes (almost) the whole file to you (it is still partially processed). The latter lets you just get down to business processing the text, but is not a complete implementation.