mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-13 13:17:36 +03:00
c821e03c66
* xmlregexp.c: another nasty regexp case fixed. * test/regexp/ranges2 result/regexp/ranges2: added to regression suite Daniel svn path=/trunk/; revision=3658
15 lines
98 B
Plaintext
15 lines
98 B
Plaintext
=>(a|b{0,3}){0,1}
|
|
a
|
|
aa
|
|
b
|
|
bb
|
|
bbb
|
|
bbbb
|
|
ab
|
|
ba
|
|
=>([0-9]{0,3}|([0-9]{0}|[0-9]{0,3})){0,3}
|
|
0
|
|
00
|
|
123
|
|
abc
|