merlin-c14n-two-10.xpath

来自「一套XML解析库」· XPATH 代码 · 共 13 行

XPATH
13
字号
<?xml version="1.0"?><XPath xmlns:bar="http://example.org/bar" xmlns:baz="http://example.org/baz" xmlns:foo="http://example.org/foo" xml:lang="en-ie">    (//. | //@* | //namespace::*)     [               <!-- only text, elements or directly-used namespace nodes -->              ancestor-or-self::bar:Something  and              ((name() != "bar") or parent::bar:Something)  and              ((name() != "foo") or parent::foo:Something)  and              ((name() != "baz") or parent::baz:Something)  and              ((name() != "") or self::text())    ]</XPath>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?