입력 식에 대해 XML 데이터 조각을 대조하여 유혀성을 검사하고 추출하는 무료 도구입니다. 주어진 매개 변수에 일치하는 결과 개체가 출력 결과 상자에 표시됩니다. 사용법은 x-path 예제를 참조하십시오.
Thanks for your feedback
앱에서 성능 문제의 근본 원인을 찾고 싶으십니까? Site24x7 APM Insight.
130여 글로벌 위치에서 가동 시간 검사
메일 전달 모니터링.
SMTP 서버 모니터링 하기.
POP/IMAP 서버 모니터링.
AI 기반 경고
Microsoft Exchange 서버 모니터링.
메일 서버와 관련된 문제 해결
외부 종속성 파악
사용자 정의 구성요소 및 메트릭스 모니터링
Following are few example xpath expressions and results for the above sample xml data
XPath Expression | Description | Result |
---|---|---|
/ | Select the document node | |
/store/chocolates/choco | Select all the 'choco' elements, which are the direct children of 'chocolates' node | |
//name[@no] | Select all the 'name' elements with 'no' attribute | |
/store//snack[last()] | Select the last snack element | |
sum(//price) | Select the sum of price element values | |
string-length(//choco[1]/name) | Select the length of the first 'choco' element's name value | |
//choco[1]/name/text() | Select the textual value of first 'choco' element's name | |
count(/store//choco) | Select the count of 'choco' elements |