diff options
author | punto- <ariel@okamstudio.com> | 2015-07-24 13:17:58 -0300 |
---|---|---|
committer | punto- <ariel@okamstudio.com> | 2015-07-24 13:17:58 -0300 |
commit | 257dba9a4a545a3e2ff7da3dab348899245fd998 (patch) | |
tree | 597b33bf8964c4d13089a35d3ed108b7895e1ead /bin/tests/test_string.cpp | |
parent | f697ec2fe022583dde5f3ae650f49cfd7f237c33 (diff) | |
parent | 69eff35cd5758aa4a6d299989342ae0e08894a8f (diff) |
Merge pull request #2300 from leezh/nrex-port
New RegEx library
Diffstat (limited to 'bin/tests/test_string.cpp')
-rw-r--r-- | bin/tests/test_string.cpp | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/bin/tests/test_string.cpp b/bin/tests/test_string.cpp index 3c8d0f7d86..93b1835b78 100644 --- a/bin/tests/test_string.cpp +++ b/bin/tests/test_string.cpp @@ -31,7 +31,7 @@ //#include "math_funcs.h" #include <stdio.h> #include "os/os.h" -#include "drivers/trex/regex.h" +#include "drivers/nrex/regex.h" #include "test_string.h" @@ -463,20 +463,16 @@ bool test_26() { OS::get_singleton()->print("\n\nTest 26: RegEx\n"); RegEx regexp("(.*):(.*)"); - List<String> captures; - bool match = regexp.match("name:password", &captures); - printf("\tmatch: %s\n", match?"true":"false"); + int res = regexp.find("name:password"); + printf("\tmatch: %s\n", (res>=0)?"true":"false"); - printf("\t%i captures:\n", captures.size()); - List<String>::Element *I = captures.front(); - while (I) { - - printf("%ls\n", I->get().c_str()); - - I = I->next(); - }; - return captures.size(); + printf("\t%i captures:\n", regexp.get_capture_count()); + for (int i = 0; i<regexp.get_capture_count(); i++) + { + printf("%ls\n", regexp.get_capture(i).c_str()); + } + return res; }; struct test_27_data { |