-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Match / replace substrings with a parser combinators. -- -- See README.md @package substring-parser @version 0.4.0.0 module Text.Parser.Substring -- | ref: -- https://stackoverflow.com/questions/29549435/parsec-how-to-find-matches-within-a-string matchAll :: Parser a -> Parser [a] replaceFileOnceWithParser :: Parser Text -> FilePath -> IO () replaceOnceWithParser :: Parser Text -> Text -> Text onceReplacify :: Parser Text -> Parser Builder takeMatch :: Parser a -> Parser (Text, a)