Problem Parsing XML
i need to parse a HTML page to extract some info but i am getting an unexpected results, see the script below. HTMLPageAsText = "
<html>
<head>
<title>String 1 i want to get</title>
</head>
<body>String 2 i want to get
<h2>Possibly also this</h2>
<h2>why i get only this</h2>
</body>
</html>
";
PageTitle="";
PageBody="";
Parse XML( HTMLPageAsText,
On Element( "title",
End Tag( ...