vote up 10 vote down star
2

Path.Combine is handy, is there a similiar function in the framework for Urls?

I'm looking for syntax like this:

Url.Combine("Http://MyUrl.com/", "/Images/Image.jpg")

...Which would return: "Http://MyUrl.com/Images/Image.jpg"

...Of course string concatenation would be fine here since the '//' would be handled intelligently by the browser. But it feels a little less elegant.

flag

5 Answers

vote up 1 vote down check

This may be a suitably simple solution:

public static string Combine(string uri1, string uri2)
{
    uri1 = uri1.TrimEnd('/');
    uri2 = uri2.TrimStart('/');
    return string.Format("{0}/{1}", uri1, uri2);
}
link|flag
+1: This is actually my favorite. Much more elegant than my, and it's probably fastest. May want to tweak it to also trim '\' just in case. – Brian MacKay Oct 28 at 15:59
vote up 3 vote down

Uri has a constructor that should do this for you: new Uri(Uri baseUri, string relativeUri)

Here's an example:

Uri baseUri = new Uri("http://www.contoso.com");
Uri myUri = new Uri(baseUri, "catalog/shownew.htm");
link|flag
vote up 3 vote down

Witty example, Ryan, to end with a link to the function. Well done.

One recommendation Brian: if you wrap this code in a function, you may want to use a UriBuilder to wrap the base Url prior to the TryCreate call. Otherwise, the base url MUST include the Scheme (where the UriBuilder will assume http://). Just a thought:

public string CombineUrl(string baseUrl, string relativeUrl) {
  UriBuilder baseUri = new UriBuiler(baseUrl);
  Uri newUri = null;


  if (Uri.TryCreate(baseUri.Uri, relativeUrl, newUri))
    return newUri.ToString();
  else
    throw new ArgumentException("Unable to combine specified url values");
}
link|flag
vote up 0 vote down

Here's the re-usable snippet of VB I came up with... It ultimately was not based on Ryan's answer:

''' <summary>
''' Takes any two Url fragments and combines them, ensuring that the resulting string has only a single / between them. Handles empty values correctly in either Url fragment.
''' </summary>
Public Shared Function UrlCombine(ByVal Url1 As String, ByVal Url2 As String) As String
    Dim Builder As New Text.StringBuilder

    'Url1
    If Url1.Length > 0 Then
        Select Case Mid(Url1, Url1.Length, 1)
            Case "/", "\"
                Builder.Append(Mid(Url1, 1, Url1.Length - 1))
            Case Else
                Builder.Append(Url1)
        End Select
    End If

    If Builder.Length > 0 Then
        Builder.Append("/")
    End If

    'Url2
    If Url2.Length > 0 Then
        Select Case Mid(Url2, 1, 1)
            Case "/", "\"
                Builder.Append(Mid(Url2, 2, Url2.Length))
            Case Else
                Builder.Append(Url2)
        End Select
    End If

    Return Builder.ToString
End Function
link|flag
vote up 21 vote down

You use Uri.TryCreate( ... ) :

Uri result = null;

if (Uri.TryCreate(new Uri("http://msdn.microsoft.com/en-us/library/"), "/en-us/library/system.uri.trycreate.aspx", out result))
{
    Console.WriteLine(result);
}

Will return:

http://msdn.microsoft.com/en-us/library/system.uri.trycreate.aspx

link|flag
+1: This is good, although I have an irrational problem with the output parameter. ;) – Brian MacKay Oct 29 at 14:24

Your Answer

Get an OpenID
or

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