เครื่องมือฟรีสำหรับตรวจรับรองและแยกส่วนที่ตรงกันของข้อมูล 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 |