My c# program retrieves an xml data column from my db containing a path to a text file as follwows
<path>
<path name="myfile" url="/test/dir/YUUHGGGVFY/grgrggr.text" />
</path>
So the above is stored in a string variable name = pathstring
How can I format the above string to only extract the "/test/dir/YUUHGGGVFY/grgrggr.text"
portion ?
The other sections of the string will always be the same:
so pathstring = "/test/dir/YUUHGGGVFY/grgrggr.text"
portion ?