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:
|
|
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:
|
||||||
|
|
|
I think a replace is easier to write and understand than Regex in this case. Given:
You can do a double replace:
|
||
|
|
|
Two operations:
Job done! Edit: I'm assuming that in C#, " |
|||
|
|
|
|
Concatenate to a string and then prepend |
|||
|
|