1# https://developer.mozilla.org/en-US/docs/Web/XPath 2# https://devhints.io/xpath 3 4# selectors 5"//" 6"./" 7"::" 8"[*]" 9 10 11# functions - https://developer.mozilla.org/en-US/docs/Web/XPath/Functions 12"boolean(" 13"ceiling(" 14"choose(" 15"concat(" 16"contains(" 17"count(" 18"current()" 19"document(" 20"element-available(" 21"ends-with(" 22"false()" 23"floor(" 24"format-number(" 25"function-available(" 26"generate-id(" 27"id(" 28"key(" 29"lang(" 30"last()" 31"local-name(" 32"name(" 33"namespace-uri(" 34"normalize-space(" 35"not(" 36"number(" 37"or" 38"position(" 39"round(" 40"starts-with(" 41"string(" 42"string-length(" 43"substring(" 44"substring-after(" 45"substring-before(" 46"sum(" 47"system-property(" 48"text()" 49"translate(" 50"true()" 51"unparsed-entity-url(" 52 53# axes - https://developer.mozilla.org/en-US/docs/Web/XPath/Axes 54"ancestor" 55"ancestor-or-self" 56"attribute" 57"child" 58"descendant" 59"descendant-or-self" 60"following" 61"following-sibling" 62"namespace" 63"parent" 64"preceding" 65"preceding-sibling" 66"self" 67