Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to identify URLs (links) in a sentence using C#.Net Windows Form's TextBox.

e.g.: That is http://stackoverflow.com link.

that sentence is in the textbox.

I need to extract http://stackoverflow.com from this sentence.

How can i do that ?

Thanks you for your time.

share|improve this question
Try to improve your access rate. – default locale Sep 22 '11 at 7:39
1  
@MAKKAM: "Accept" – Mehrdad Sep 22 '11 at 7:42
@Mehrdad: yes, thank you. – default locale Sep 22 '11 at 7:44

4 Answers

Look up hyperlink regular expression - you can this plug in what you find into a Regex object and it will capture the url for you.

share|improve this answer
string str = "That is my url expression http://stackoverflow.com ";    
string pattern = @"((https?|http):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+-=\\\.&]*)";    
string[] arr = Regex.Split(str, pattern); Console.WriteLine(arr[1]);
share|improve this answer
Very Thanks you. Your Answer is very suitable for my problem. Please give him point. :) – Seven Sep 23 '11 at 6:53
Thnaks. but you can also give me points too :) – Asad Iqbal Sep 23 '11 at 7:47
+1 Asad Iqbal :) – Seven Sep 23 '11 at 14:49

You can use LinkLabel control. Provide text to the Text attribute and then in the proerty LinkArea define where only should be link. The only thing is that only one link per full LinkLabel text allowed.

enter image description here

share|improve this answer

Try:

detail = Core.URL.Replace(detail, 
      delegate(Match match)
      {
          // match.ToString() will contain http://stackoverflow.com in your case :)
          return string.Format("<a target=\"_blank\" href=\"{0}\">{0}</a>", match.ToString());
      });

With Core.URL.Replace defined as:

public static Regex URL = new Regex(@"(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&amp;:/~\+#]*[\w\-\@?^=%&amp;/~\+#])", RegexOptions.Compiled);

This code originally came from:

http://weblogs.asp.net/farazshahkhan/archive/2008/08/09/regex-to-find-url-within-text-and-make-them-as-link.aspx#7224581

share|improve this answer
Thanks you for your answers. – Seven Sep 22 '11 at 8:11
Did it help/work for your problem? – Stuart Blackler Sep 22 '11 at 8:12
No brother.Below answer is correct for my problem. But very thank you for your hardworking. :) – Seven Sep 23 '11 at 6:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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