有没有一个高级API用于在Haskell中进行搜索和替换与正则表达式?特别是,我正在看Text.Regex.TDFA或Text.Regex.Posix包。我真的喜欢类似的东西:
f :: Regex -> (ResultInfo -> m String) -> String -> m String
所以,例如,用“猫”代替“狗”,你可以写
runIdentity . f "dog" (return . const "cat") -- :: String -> String
或者与monad进行更多高级的事情,比如计数事件等。
Haskell的这个文档是相当缺乏的。一些低级API注释是here。
Text.Regex包中的
原文链接:https://www.f2er.com/regex/357374.htmlsubRegex
怎么样?
Prelude Text.Regex> :t subRegex subRegex :: Regex -> String -> String -> String Prelude Text.Regex> subRegex (mkRegex "foo") "foobar" "123" "123bar"