Hi all
I'm trying to figure out the best way to perfom validation on a string representing a UNC path. I would like to check that the path has a fourth backslash and also has some characters after the fourth backslash, e.g.
\\blah\blah\blah = ok
\\blah\blah or \\blah\blah\ = not ok
"blah" could be anything.
Is regex the simplest way to go with this or is there an easier way?
Alexei