Created
November 11, 2013 18:22
-
-
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> )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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