1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00
libxml2/result/regexp/ranges2
Daniel Veillard c821e03c66 another nasty regexp case fixed. added to regression suite Daniel
* xmlregexp.c: another nasty regexp case fixed.
* test/regexp/ranges2 result/regexp/ranges2: added to regression
  suite
Daniel

svn path=/trunk/; revision=3658
2007-08-28 17:33:45 +00:00

15 lines
168 B
Plaintext

Regexp: (a|b{0,3}){0,1}
a: Ok
aa: Fail
b: Ok
bb: Ok
bbb: Ok
bbbb: Fail
ab: Fail
ba: Fail
Regexp: ([0-9]{0,3}|([0-9]{0}|[0-9]{0,3})){0,3}
0: Ok
00: Ok
123: Ok
abc: Fail