mirror of
https://github.com/GNOME/libxml2.git
synced 2025-10-21 15:30:48 +08:00

* 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
|