Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Created November 11, 2013 18:22
Show Gist options
  • Save csharpforevermore/7417814 to your computer and use it in GitHub Desktop.
Save csharpforevermore/7417814 to your computer and use it in GitHub Desktop.
Get value from a string version of an XML node (e.g. Get text "Value" from this <node id="test>Value</node> )
private string GetXmlValue(string responseUrl)
{
return responseUrl.Split('>')[1].Split('<')[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment