How to pull the server name from a UNC

前端 未结 5 971
借酒劲吻你
借酒劲吻你 2021-02-05 16:34

Would anyone be able to tell me how to pull the server name out of a UNC?

ex.

//servername/directory/directory

Edit : I apologize but it looks like I nee

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-05 17:09

    Just another option, for the sake of showing different options:

    (?<=^//)[^/]++
    


    The server name will be in \0 or $0 or simply the result of the function, depending on how you call it and what your language offers.


    Explanation in regex comment mode:

    (?x)      # flag to enable regex comments
    (?<=      # begin positive lookbehind
    ^         # start of line
    //        # literal forwardslashes (may need escaping as \/\/ in some languages)
    )         # end positive lookbehind
    [^/]++    # match any non-/ and keep matching possessively until a / or end of string found.
              # not sure .NET supports the possessive quantifier (++) - a greedy (+) is good enough here.
    

提交回复
热议问题