summaryrefslogtreecommitdiff
path: root/src/regex__FFI.urs
Commit message (Collapse)AuthorAge
* Correct order of arguments to Regex.replaceGravatar Benjamin Barenblat2015-07-30
|
* Implement regex substitutionGravatar Benjamin Barenblat2015-07-30
|
* Make library work on both client and server sidesGravatar Benjamin Barenblat2015-07-30
| | | | | | Replace the two-step compile/match process with a single compile-and-match one to avoid issues with server-client representation incompatibility. Use the browser regex engine on the client side.
* Initial commit of the regex matcherGravatar Benjamin Barenblat2015-07-03
Wrap glibc’s regex engine to allow matching and group capture in POSIX extended regular expressions. It might be worth rewriting this in terms of the C++11 regex engine; it’s more featureful and more pleasant to use, although it would require more casting. (C can’t represent the std::regex type, so I’d need to use some void pointers.)