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