Here's the line:
\n\n\t\thttp://www.linkedin.com/in/ckenworthy\n\n\t
How can I separate everything so that I just finish:
http://www.linkedin.com/in/ckenworthy
I tried the following:
string value = doc.XPathSelectElement("/ipb/profile/contactinformation/contact[title/text() = 'LinkedIn']/value").Value;
value = value.Replace(Environment.NewLine, "");
return value;
But I always end the first line that I posted there. Thank!
source
share