Hello,
Does anyone have any good c# code that will parse a string and "linkify" any urls that may be in the string?
|
1
|
|||
|
|
|
It's a pretty simple task you can acheive it with Regex and a ready-to-go regular expression from: Something like:
You may also be interested not only in creating links but in shortening URLs. Here is a good article on this subject: See also:
|
||||||||||
|
|
|
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! |
||||||
|
|
|
|
||
|
|
|
well, after a lot of research on this, and several attempts to fix times when
we are now using this HtmlHelper extension... thought I would share and get any comments:
|
||
|
|