Error: Too many requests. Please try again. x

XPath-Evaluator

Ein kostenloses Werkzeug zum Validieren und Extrahieren passender Teile von XML-Daten relativ zum Eingangsausdruck. Das zum angegebenen Parameter passende Ergebnisobjekt wird im Ausgabeergebnis-Feld angezeigt. Hinweise zum Einsatz finden Sie im XPath-Beispiel.

Sie möchten Leistungsproblemen Ihrer Applikation auf den Grund gehen? Setzen Sie auf Site24x7 APM Insight.

Verfügbarkeit von mehr als 110 globalen Standorten prüfen

Mailzustellungsüberwachung.

Überwachen Sie Ihren SMTP-Server.

POP/IMAP-Serverüberwachung

KI-gestützte Alarmierungen

Microsoft-Exchange-Serverüberwachung.

Lösen Sie Mailserverprobleme im Handumdrehen.

Externe Abhängigkeiten verstehen

Spezifische Komponenten und Metriken überwachen

XPath Examples

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