Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to extract only server names which is starting from \\. \\ is removed. After extracting server names this string is parsed. how can i do?

share|improve this question

2 Answers

Look at the Uri class.

Uri uri = new Uri(@"\\Myserver\myshare\myfile.txt");
uri.Host == "Myserver"
share|improve this answer

This is the regex: \\\\.*?\\

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.