]> git.saurik.com Git - apple/libc.git/blob - tests/regex/datafiles/misc.dat
Libc-1439.100.3.tar.gz
[apple/libc.git] / tests / regex / datafiles / misc.dat
1 B \(a\)*\1 a NOMATCH
2 #E (?l)(a*)(b|abc)(c*) abc (0,3)(0,0)(0,3)(3,3)
3 E (...?.?)* xxxx (0,4)(0,4)
4 E (...?.?)* xxxxx (0,5)(3,5)
5 E (...?.?)* xxxxxx (0,6)(4,6)
6 E (...?.?)* xxxxxxx (0,7)(4,7)
7 E (...?.?)* xxxxxxxx (0,8)(4,8)
8 E (...?.?)* xxxxxxxxx (0,9)(7,9)
9 E (...?.?)* xxxxxxxxxx (0,10)(8,10)
10 E (...?.?)* xxxxxxxxxxx (0,11)(8,11)
11 {C en_GB.UTF-8
12 E ^([[:digit:]]){3}$ abc NOMATCH
13 }
14 B \(a\(b\)*\)*\2 abab NOMATCH
15 B a\(b\)*c\1 acb NOMATCH
16 B a\(b\)*c\1 abbcbbb (0,5)(2,3)
17 B a\(b\)*c\1 abbdbd NOMATCH
18 E (a|ab)(bc|c) abcabc (0,3)(0,2)(2,3)
19 :RE#33:E (aba|ab|a|z)* ababa (0,5)(2,5)
20 :RE#33:E (aba|ab|a|(z))* ababa (0,5)(2,5)