blob: 5710b5c6fcb7a090d97d9e57f2fc995ac9b47e0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Node /a matches pattern a
Node /a/b matches pattern b
Node /a/b matches pattern b
Node /a matches pattern /a
Node /a/b matches pattern a/b
Node /a/b/c matches pattern a/b/c
Node /a matches pattern //a
Node /a/b matches pattern //b
Node /a/b/c matches pattern //c
Node /a/b matches pattern a//b
Node /a/b/c matches pattern a//c
Node /a/b/c matches pattern b//c
|