The regexpr package
Regular expression library like Perl and Ruby's regular expressions. This package has a module RegexPR. And RegexPR export functions matchRegexPR and gsubRegexPR.
matchRegexPR :: String -> Maybe ((String, (String, String)), [(Int, String)]) gmatchRegexPR :: String -> [((String, (String, String)), [(Int, String)])] subRegexPR :: String -> String -> String gsubRegexPR :: String -> String -> String splitRegexPR :: String -> String -> [String]
Examples
matchRegexPR "ab(cde)f\\1" "kkkabcdefcdefgh" =>
Just (("abcdefcde", ("kkk", "fgh")),[(1,"cde")])
matchRegexPR "(?<=hij)abc" "kkkabchijabcde" =>
Just (("abc",("kkkabchij","de")),[])
gsubRegexPR "\\G(\\d\\d\\d)" "\\1," "123456 789" => "123,456, 789"
subRegexPR "(?<=(.)(.)(.))e" " \\3\\2\\1 " "abcdefg" => "abcd dcb fg"
gsubRegexPR "(?ixm) aBc . # comment \n\n" "abc!" "abc\nABCDAbcAbc" =>
"abc!abc!abc!bc"
gmatchRegexPR "(?=(?<!(?!abc)))abc" "abcdefdefabc" =>
[(("abc", ("", "defdefabc")), []), (("abc", ("defdef", "")), [])]
splitRegexPR "\\s*,\\s*" "a,b ,c\t ,d , e" => ["a","b","c","d","e"]
Properties
| Versions | 0.1.3, 0.1.5, 0.1.6, 0.1.7, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.5, 0.2.6, 0.2.8, 0.2.9, 0.3, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.4, 0.5, 0.5.1, 0.5.3, 0.5.4 |
|---|---|
| Dependencies | base, HUnit, mtl, mtlparse (≥0.0.1) |
| License | LGPL |
| Author | Yoshikuni Jujo <PAF01143@nifty.ne.jp> |
| Maintainer | PAF01143@nifty.ne.jp |
| Stability | experimental |
| Category | Text |
| Home page | http://homepage3.nifty.com/salamander/second/projects/regexpr/ |
| Upload date | Sat Nov 2 04:42:34 UTC 2008 |
| Uploaded by | YoshikuniJujo |
| Built on | ghc-6.10, ghc-6.12, ghc-6.8 |
| Distributions | Fedora: 0.5.4, NixOS: 0.5.4, Debian: 0.5.4 |
Modules
- Text
Downloads
- regexpr-0.3.2.tar.gz (Cabal source package)
- package description (included in the package)