I need a regular expression in java to match a valid UNC path.
Something like -
\\
servername.company.com\folder\subFolder\
There should be no drive name or ":" in the name.
\\\\[\\w+] captures the double slash and following word but i can't
seem to get the repeating sequence of "word\" working. I'd appreciate
any help.