1 | Node /a matches pattern a|b
|
---|
2 | Node /a/b matches pattern a|b
|
---|
3 | Node /a/b/c[1]/b matches pattern a|b
|
---|
4 | Node /a/b/c[2]/b matches pattern a|b
|
---|
5 | Node /a/b/c[2]/c/b matches pattern a|b
|
---|
6 | Node /a/c/b matches pattern a|b
|
---|
7 | Node /a matches pattern a|c
|
---|
8 | Node /a/b/c[1] matches pattern a|c
|
---|
9 | Node /a/b/c[2] matches pattern a|c
|
---|
10 | Node /a/b/c[2]/c matches pattern a|c
|
---|
11 | Node /a/c matches pattern a|c
|
---|
12 | Node /a/b matches pattern b|c
|
---|
13 | Node /a/b/c[1] matches pattern b|c
|
---|
14 | Node /a/b/c[1]/b matches pattern b|c
|
---|
15 | Node /a/b/c[2] matches pattern b|c
|
---|
16 | Node /a/b/c[2]/b matches pattern b|c
|
---|
17 | Node /a/b/c[2]/c matches pattern b|c
|
---|
18 | Node /a/b/c[2]/c/b matches pattern b|c
|
---|
19 | Node /a/c matches pattern b|c
|
---|
20 | Node /a/c/b matches pattern b|c
|
---|
21 | Node /a matches pattern a|b|c
|
---|
22 | Node /a/b matches pattern a|b|c
|
---|
23 | Node /a/b/c[1] matches pattern a|b|c
|
---|
24 | Node /a/b/c[1]/b matches pattern a|b|c
|
---|
25 | Node /a/b/c[2] matches pattern a|b|c
|
---|
26 | Node /a/b/c[2]/b matches pattern a|b|c
|
---|
27 | Node /a/b/c[2]/c matches pattern a|b|c
|
---|
28 | Node /a/b/c[2]/c/b matches pattern a|b|c
|
---|
29 | Node /a/c matches pattern a|b|c
|
---|
30 | Node /a/c/b matches pattern a|b|c
|
---|
31 | Node /a matches pattern /a|b
|
---|
32 | Node /a/b matches pattern /a|b
|
---|
33 | Node /a/b/c[1]/b matches pattern /a|b
|
---|
34 | Node /a/b/c[2]/b matches pattern /a|b
|
---|
35 | Node /a/b/c[2]/c/b matches pattern /a|b
|
---|
36 | Node /a/c/b matches pattern /a|b
|
---|
37 | Node /a matches pattern b|/a
|
---|
38 | Node /a/b matches pattern b|/a
|
---|
39 | Node /a/b/c[1]/b matches pattern b|/a
|
---|
40 | Node /a/b/c[2]/b matches pattern b|/a
|
---|
41 | Node /a/b/c[2]/c/b matches pattern b|/a
|
---|
42 | Node /a/c/b matches pattern b|/a
|
---|
43 | Node /a/b/c[1] matches pattern a//c|b//c
|
---|
44 | Node /a/b/c[2] matches pattern a//c|b//c
|
---|
45 | Node /a/b/c[2]/c matches pattern a//c|b//c
|
---|
46 | Node /a/c matches pattern a//c|b//c
|
---|
47 | Node /a matches pattern d|e|f|g|h|a
|
---|