vote up 1 vote down star

Hey,

I'm looking for a nice tight regex solution to this problem. I'm looking to reformat an UNC into a Uri

Problem:

UNC directory needs to be reformatted into a Uri

\\server\d$\x\y\z\AAA

needs to look like:

http://server/z/AAA

flag

1  
How do you know that "d$\x\y\" should be removed from the middle? – RichieHindle Jun 27 at 17:46
The web server is mapped to z, so those other guys in the middle don't need to be seen in the final url. – KevinDeus Jun 27 at 17:51

3 Answers

vote up 1 vote down check

I think a replace is easier to write and understand than Regex in this case. Given:

string input = "\\\\server\\d$\\x\\y\\z\\AAA";

You can do a double replace:

string output = String.Format("http:{0}", input.Replace("\\d$\\x\\y", String.Empty).Replace("\\", "/"));
link|flag
this one is awesome. Thanks :) – KevinDeus Jun 27 at 19:41
vote up 0 vote down

Two operations:

  • first, replace "(.*)d\$\\x\\y\\(.*)" with "http:\1\2" - that'll clear out the d$\x\y\, and prepend the http:.

  • Then replace \\ with / to finish the job.

Job done!

Edit: I'm assuming that in C#, "\1" contains the first parenthesised match (it does in Perl). If it doesn't, then it should be clear what is meant above :)

link|flag
vote up 1 vote down
^(\\\\\w+)\\.*(\\\w\\\w+)$
  • First match: \\server

  • Second match: \z\AAA

Concatenate to a string and then prepend http: to get http:\\server\z\AAA. Replace \ with /.

link|flag

Your Answer

Get an OpenID
or

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