Available links in selected C # tweets

I have a problem that I don’t know how to solve exactly as I would like it to be solved. I am extracting tweets from certain twitter channels, such as users and # (via .rss search). However, some of the tweets contain a link that is not available when it appears in the ListBox (datatemplate). Is there an easy way to convert everything in every single tweet that contains "http: // <-link->" to the actual click link? Either through XAML or C #.

+5
source share
3 answers

Relatively easy in C #:

  • URL- Regex ( regex : , URL?)
  • URL- <a> href URL
  • URL-
0

( ), , Run. . , :

WPF -

0

HtmlTextBlock. :

WPF, HTML ( Leung Yat Chun CodeProject.com)

, , HTML, ([]), (<>).

The original version of the code in CodeProject is not the latest, I had to do some searches and ultimately put it as a github repository , since it is open source (and with the blessing of the owner) - as the readme repo mentions, the code is not mine.

0
source

All Articles