You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example passes in the XPath expression, `'/produce/item/name'`, to find the nodes that match the `<name></name>` node in the `'items'` XML string, and returns an array with those node values:
4909
4923
@@ -4935,7 +4949,21 @@ Here is the result: `Honeycrisp`
4935
4949
4936
4950
In this example, suppose your `items` XML string also contains the attributes, `expired='true'` and `expired='false'`:
This example passes in the XPath expression, `'//name[@expired = 'true']'`, to find all the `name` elements that have the attribute, `expired = 'true'`:
4953
4995
@@ -4962,7 +5004,21 @@ In this example, suppose your `items` XML string also contains these attributes:
These expressions use either XPath expression, `/*[name()="file"]/*[name()="location"]` or `/*[local-name()="file" and namespace-uri()="http://contoso.com"]/*[local-name()="location"]`, to find nodes that match the `<location></location>` node. These examples show the syntax that you use in either the Logic App Designer or in the expression editor:
0 commit comments