Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add maxsplit | Flaviu Tamas | 2015-01-18 | 1 | -1/+6 |
| | |||||
* | Add more typical string replace | Flaviu Tamas | 2015-01-17 | 1 | -0/+4 |
| | |||||
* | Add replace | Flaviu Tamas | 2015-01-17 | 1 | -5/+21 |
| | | | | Also came a cross a find bug with 0-length subject strings | ||||
* | Fix upper bound handling | Flaviu Tamas | 2015-01-16 | 1 | -1/+3 |
| | |||||
* | s/match/find/g | Flaviu Tamas | 2015-01-16 | 1 | -9/+6 |
| | | | | The implementation needs to match the API after all ;) | ||||
* | Add captures in split | Flaviu Tamas | 2015-01-15 | 1 | -0/+4 |
| | |||||
* | Implement capture iterator | Flaviu Tamas | 2015-01-15 | 1 | -6/+11 |
| | |||||
* | s/asSeq/toSeq | Flaviu Tamas | 2015-01-15 | 1 | -5/+5 |
| | | | | `toSeq` is a better name for it | ||||
* | Remove unnecessary options | Flaviu Tamas | 2015-01-14 | 1 | -2/+0 |
| | |||||
* | Add shorthand initialization | Flaviu Tamas | 2015-01-12 | 1 | -0/+2 |
| | |||||
* | Remove all optional RegexMatch returns | Flaviu Tamas | 2015-01-12 | 1 | -13/+11 |
| | |||||
* | Added some documentation | Flaviu Tamas | 2015-01-12 | 1 | -2/+9 |
| | |||||
* | Add findAllStr | Flaviu Tamas | 2015-01-12 | 1 | -0/+5 |
| | |||||
* | Unexpose implementation detail | Flaviu Tamas | 2015-01-12 | 1 | -1/+1 |
| | |||||
* | Flip parameter string-pattern order | Flaviu Tamas | 2015-01-12 | 1 | -66/+66 |
| | |||||
* | Implement match, find, split | Flaviu Tamas | 2015-01-12 | 1 | -7/+119 |
| | |||||
* | Fix incorrect check | Flaviu Tamas | 2015-01-10 | 1 | -1/+1 |
| | | | | | pcre_study can return nil and still succeed The indicator of failure is a non-nil error message | ||||
* | Expose the pattern string, rename some procs | Flaviu Tamas | 2015-01-10 | 1 | -9/+11 |
| | |||||
* | Rename exec(...) and extend it | Flaviu Tamas | 2015-01-10 | 1 | -2/+6 |
| | |||||
* | Expose pattern and input string | Flaviu Tamas | 2015-01-10 | 1 | -6/+8 |
| | |||||
* | Allow `u` for unicode matching | Flaviu Tamas | 2015-01-10 | 1 | -0/+1 |
| | |||||
* | Implement toTable(Captures), toSeq(Captures) | Flaviu Tamas | 2015-01-10 | 1 | -0/+35 |
| | |||||
* | Revert "Remove Option from exec(Regex, string, int)" | Flaviu Tamas | 2015-01-10 | 1 | -6/+3 |
| | | | | This reverts commit f692042bb835642d7d0f3296b3c6b2ea60737ecf. | ||||
* | Remove Option from exec(Regex, string, int) | Flaviu Tamas | 2015-01-10 | 1 | -3/+6 |
| | |||||
* | Move some things around | Flaviu Tamas | 2015-01-10 | 1 | -59/+60 |
| | |||||
* | Add access to capture count and names | Flaviu Tamas | 2015-01-10 | 1 | -1/+6 |
| | |||||
* | captureCount doesn't need to be exposed that way | Flaviu Tamas | 2015-01-10 | 1 | -1/+1 |
| | |||||
* | Implement captures | Flaviu Tamas | 2015-01-10 | 1 | -38/+104 |
| | |||||
* | Implement regex execution | Flaviu Tamas | 2015-01-10 | 1 | -3/+29 |
| | |||||
* | Simplify thin wrapper | Flaviu Tamas | 2015-01-10 | 2 | -11/+6 |
| | |||||
* | Implement correct destruction | Flaviu Tamas | 2015-01-10 | 2 | -9/+17 |
| | |||||
* | Implement foundation for named captures | Flaviu Tamas | 2015-01-10 | 1 | -1/+32 |
| | |||||
* | Remove DUPNAMES option | Flaviu Tamas | 2015-01-10 | 1 | -1/+0 |
| | | | | | It makes the rest of the implementation more complicated and is confusing anyway. The user expects a 1:1 mapping between a match and a name | ||||
* | Extend Regex, add RegexMatch | Flaviu Tamas | 2015-01-10 | 1 | -2/+8 |
| | |||||
* | Implement regex initialization | Flaviu Tamas | 2015-01-09 | 2 | -0/+104 |
| | |||||
* | Add thin PCRE wrapper | Flaviu Tamas | 2015-01-09 | 2 | -0/+1080 |