Package-level declarations

Types

Link copied to clipboard

An implementation of IMfmParser that searches for a given string in a given string. The input string is expected to satisfy any IMfmParser passed to parsers. If all parsers fail, this implementation treats the search as failing as well.

Link copied to clipboard

Indicates the type of format found by IMfmParser

Link copied to clipboard
class RegexParser(regex: Regex) : IMfmParser

An implementation of IMfmParser that searches for a regular expression in a given string.

Link copied to clipboard

An implementation of IMfmParser that sequentially searches for substrings using multiple other MFM parsers. We expect the input string to satisfy all IMfmParser passed to parsers, and if any one of the parsers fails, this implementation will also treat the search as failed.

Link copied to clipboard

An implementation of IMfmParser that searches for a given string in a given string.