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 489 Current »

Overview

Parses specified string as xml node and returns document element as Xml instance.

Xml myXml.Parse(xml: string)

Arguments

string xml
XML string to parse.

Remarks

While parsing the xml white spaces is preserved.

Example

Usage

var myXml = $Xml.Parse('<doc><Customer><Name>hello</Name></Customer></doc>');
var name = myXml.Evaluate('//Customer/Name')
  • No labels