I need to get the value Status. from this piece of xml:
string xml = "<value z:Id=\"8\" z:Type=\"System.String\" z:Assembly=\"0\">Status.</value>";
Regex regexFieldValue = new Regex("z:Assembly=\"0\">(?<fieldValue>[^<|\\.|.]+)</value>");
Match match = regexFieldValue.Match(xml);
if (match.Success)
{
Group group = match.Groups["fieldValue"];
return group.Value;
}
Tanks