vote up 7 vote down star
1

Hello,

Does anyone have any good c# code that will parse a string and "linkify" any urls that may be in the string?

flag

75% accept rate
This seems to be the question with the canonical regular expression-based solution. Perhaps somebody could edit the title to help searchers find it? – jhs Oct 7 at 11:44

4 Answers

vote up 14 vote down check

It's a pretty simple task you can acheive it with Regex and a ready-to-go regular expression from:

Something like:

var html = Regex.Replace(html, @"^(http|https|ftp)\://[a-zA-Z0-9\-\.]+" +
                         "\.[a-zA-Z]{2,3}(:[a-zA-Z0-9]*)?/?" +
                         "([a-zA-Z0-9\-\._\?\,\'/\\\+&%\$#\=~])*$",
                         "<a href=\"$1\">$1</a>");

You may also be interested not only in creating links but in shortening URLs. Here is a good article on this subject:

See also:

link|flag
Hi. Great response. Most of the suggestions in your post (and links) seem to work but they all seem to break any existing links in the text being evaluated. – Vance Smith Apr 16 at 22:01
VSmith you can try different reg expressions from regixlib.com and find which one works best for you. – Koistya Navin Apr 16 at 22:04
@VSmith: Are you implying that you have a string like "hello <a href="a.com">there</a>;, see: b.com";; and you only want to linkify the second one? – Zhaph - Ben Duguid Apr 16 at 22:23
hmm, that worked well. thus proving all the points we're making here ;) – Zhaph - Ben Duguid Apr 16 at 22:24
Hi Zhaph, yes thats definitely what I want to do. stackoverflow seems to have great "linkifying" code doesnt it? ;-) – Vance Smith Apr 16 at 22:51
vote up 4 vote down

It's not that easy as you can read in this blog post by Jeff Atwood. It's especially hard to detect where an URL ends.

For example, is the trailing parenthesis part of the URL or not:

In the first case, the parentheses are part of the URL. In the second case they are not!

link|flag
And as you can see from the linkified URLs in this answer, not everyone gets it right :) – Ray Apr 16 at 21:54
Well in fact, I didn't want the two URLs to be linkified. But it seems this is not supported. – Martin Apr 16 at 21:57
Jeff's regex seems to display badly in my browser, I believe it should be: "\(?\bhttp://[-A-Za-z0-9+&@#/%?=~_()|!:,.;]*[-A-Za-z0-9+&@#/%=~_()|]" – Zhaph - Ben Duguid Apr 16 at 22:00
vote up 1 vote down
protected string Linkify( string SearchText ) {
    // this will find links like:
    // http://www.mysite.com
    // as well as any links with other characters directly in front of it like:
    // href="http://www.mysite.com"
    // you can then use your own logic to determine which links to linkify
    Regex regx = new Regex( @"\b(((\S+)?)(@|mailto\:|(news|(ht|f)tp(s?))\://)\S+)\b", RegexOptions.IgnoreCase );
    SearchText = SearchText.Replace( "&nbsp;", " " );
    MatchCollection matches = regx.Matches( SearchText );

    foreach ( Match match in matches ) {
        if ( match.Value.StartsWith( "http" ) ) { // if it starts with anything else then dont linkify -- may already be linked!
            SearchText = SearchText.Replace( match.Value, "<a href='" + match.Value + "'>" + match.Value + "</a>" );
        }
    }

    return SearchText;
}
link|flag
Cheers for posting that one :) – Zhaph - Ben Duguid Apr 17 at 20:59
vote up 2 vote down

well, after a lot of research on this, and several attempts to fix times when

  1. people enter in http://www.sitename.com and www.sitename.com in the same post
  2. fixes to parenthisis like (http://www.sitename.com) and http://msdn.microsoft.com/en-us/library/aa752574(vs.85).aspx
  3. long urls like: http://www.amazon.com/gp/product/b000ads62g/ref=s9_simz_gw_s3_p74_t1?pf_rd_m=atvpdkikx0der&pf_rd_s=center-2&pf_rd_r=04eezfszazqzs8xfm9yd&pf_rd_t=101&pf_rd_p=470938631&pf_rd_i=507846

we are now using this HtmlHelper extension... thought I would share and get any comments:

    private static Regex regExHttpLinks = new Regex(@"(?<=\()\b(https?://|www\.)[-A-Za-z0-9+&@#/%?=~_()|!:,.;]*[-A-Za-z0-9+&@#/%=~_()|](?=\))|(?<=(?<wrap>[=~|_#]))\b(https?://|www\.)[-A-Za-z0-9+&@#/%?=~_()|!:,.;]*[-A-Za-z0-9+&@#/%=~_()|](?=\k<wrap>)|\b(https?://|www\.)[-A-Za-z0-9+&@#/%?=~_()|!:,.;]*[-A-Za-z0-9+&@#/%=~_()|]", RegexOptions.Compiled | RegexOptions.IgnoreCase);

    public static string Format(this HtmlHelper htmlHelper, string html)
    {
        if (string.IsNullOrEmpty(html))
        {
            return html;
        }

        html = htmlHelper.Encode(html);
        html = html.Replace(Environment.NewLine, "<br />");

        // replace periods on numeric values that appear to be valid domain names
        var periodReplacement = "[[[replace:period]]]";
        html = Regex.Replace(html, @"(?<=\d)\.(?=\d)", periodReplacement);

        // create links for matches
        var linkMatches = regExHttpLinks.Matches(html);
        for (int i = 0; i < linkMatches.Count; i++)
        {
            var temp = linkMatches[i].ToString();

            if (!temp.Contains("://"))
            {
                temp = "http://" + temp;
            }

            html = html.Replace(linkMatches[i].ToString(), String.Format("<a href=\"{0}\" title=\"{0}\">{1}</a>", temp.Replace(".", periodReplacement).ToLower(), linkMatches[i].ToString().Replace(".", periodReplacement)));
        }

        // Clear out period replacement
        html = html.Replace(periodReplacement, ".");

        return html;
    }
link|flag

Your Answer

Get an OpenID
or

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