re2: Bindings to the re2 regular expression library
This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.
Warnings:
- 'ghc-options: -O2' is rarely needed. Check that it is giving a real benefit and not just imposing longer compile times on your users.
- 'cc-options: -O[n]' is generally not needed. When building with optimisations Cabal automatically adds '-O2' for C code. Setting it yourself interferes with the --disable-optimization flag.
- Exposed modules use unallocated top-level names: Regex
re2 is a regular expression library offering predictable run-time and memory consumption. This package is a binding to re2.
Supported expression syntax is documented at http://code.google.com/p/re2/wiki/Syntax.
$ ghci -XOverloadedStrings ghci> import Regex.RE2 ghci> find "\\w+" "hello world" Just (Match [Just "hello"]) ghci> find "\\w+$" "hello world" Just (Match [Just "world"]) ghci> find "^\\w+$" "hello world" Nothing
Properties
Versions | 0.1, 0.1, 0.2, 0.3 |
---|---|
Change log | None available |
Dependencies | base (>=4.7 && <5.0), bytestring (>=0.10.2), vector [details] |
License | MIT |
Copyright | lib/: John Millikin, third-party/: Google Inc. |
Author | John Millikin <john@john-millikin.com> |
Maintainer | John Millikin <john@john-millikin.com> |
Category | Regex |
Home page | https://john-millikin.com/software/haskell-re2/ |
Bug tracker | mailto:jmillikin@gmail.com |
Source repo | head: git clone https://john-millikin.com/code/haskell-re2/ this: git clone https://john-millikin.com/code/haskell-re2/(tag haskell-re2_0.1) |
Uploaded | by JohnMillikin at 2014-06-03T04:49:55Z |
Modules
[Index]
- Regex
Downloads
- re2-0.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
Package maintainers
For package maintainers and hackage trustees