re2

Version 0.3 revision 0 uploaded by blaze.

Package meta

Synopsis
Bindings to the re2 regular expression library
Description

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 https://github.com/google/re2/

$ 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
Author
John Millikin <john@john-millikin.com>
Bug reports
n/a
Category
Regex
Copyright
n/a
Homepage
https://github.com/rblaze/haskell-re2#readme
Maintainer
Andrey Sverdlichenko <blaze@ruddy.ru>
Package URL
n/a
Stability
experimental

Components