Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Overview

Returns boolean value that states if the current node or specified xpath has an empty string.

boolean myXml.IsEmpty()

Returns boolean value that states if the current node or specified xpath has an empty string.

boolean myXml.IsEmpty(xpath: string)

Arguments

string xpath
XPath to evaluate.

Remarks

Returns true if the specified xpath does not correspond to an existing node.

Example

Evaluate with an xpath

var isNameEmpty = $Xml.IsEmpty('//Customer/Name');
  • No labels