aboutsummaryrefslogtreecommitdiff
path: root/drivers/nrex/regex.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Bring that Whole New World to the Old Continent tooRémi Verschelde2017-03-191-31/+21
| | | | | Applies the clang-format style to the 2.1 branch as done for master in 5dbf1809c6e3e905b94b8764e99491e608122261.
* Add missing license headers in our source files (#5255)Rémi Verschelde2016-06-181-11/+28
| | | Also removes a couple wrong Godot headers from third-party source files.
* Forgot to correct the ERR_FAIL_COND_V.Julian Murgia - StraToN2016-02-121-1/+1
|
* Added RegEx::get_capture_start() methodJulian Murgia - StraToN2016-02-121-0/+9
|
* Update copyright to 2016 in headersGeorge Marques2016-01-011-1/+1
|
* updated the RegEx library nrex to v0.1Zher Huei Lee2015-12-041-3/+3
| | | | | | | | | | | | | | | | | | After implementing unit testing to nrex I caught and fixed some errors so it should behave more like Python's RegEx In addition, I've added version numbering so it should be able to tell if the library needs updating. Here are a list of changes: - Fixed zero count quantifiers failing. - Fixed infinite recursion if quantifying zero length token. - Fixed `$` (as a string pattern on its own) not matching. - Fixed look behind rewinding beyond the start of the string. - Added support for alternative back reference format `\g{1}` similar to Python. This allows digits to be used immediately after back references. - Number of capture groups are still limited to 9 by default but can now be manually set, with option for no limit at all. (Python has no limit) - Curly bracket quantifiers `{0}` no longer interpreted as a literal string if previous token is not quantifiable. (Python behaviour)
* Exposed RegEx expanded option to scriptsZher Huei Lee2015-11-071-3/+3
|
* Fixed segfault in RegEx.get_capture()Zher Huei Lee2015-11-071-1/+3
|
* Fixed incorrect failsafe return valuesZher Huei Lee2015-07-241-3/+3
|
* Made RegEx API similar to old versionZher Huei Lee2015-07-241-9/+11
|
* Regex library Nrex initial portLee Zher Huei2015-07-241-0/+112