HTML to XAML (with images)

anon(5329380)

New member
Sep 3, 2011
12
0
0
Visit site
Hi there,
Currently I'm working on an app that has code elements from the WordPress sample built-in. This means however, that posts show up in a WebBrowser control. As the WebBrowser control overrides the gesture events, swipes to the left or right are being ignored by the pivot.
I'm currently passing the source of the WebBrowser to a RichTextBox, but I've been unable to remove HTML-tags, like <p class="">, <img>, etc.

var html = new StringBuilder();
html.Replace("<p>", String.Empty);h
tml.Append(htmlSubString);
return html.ToString();

When I remove the html.Append(htmlSubString); the entire content of the textbox disappears...
I'm currently trying to use this code as a "filter", but it does not seem to work. As I've never worked with this part of coding before, it's hard for me to understand why this doens't work.
It would be great if someone could show me a revised version of my code or some website with an explanation so I can finally finish this app.
Also IF it is not too much of a problem, I'd like the images in the HTML to be converted into an image in XAML.

Anyone know how to do this? If not, thanks for reading anyway :wink:
 

2Scratch

New member
Aug 10, 2013
2
0
0
Visit site
Well, if this is actual code sequence, then no surprise that it's not working.
First of all you are calling Replace method on empty String(Builder), so first line should be:
var html = new StringBuilder(htmlSubString); // htmlSubString or whatever your source html is.
Then replace will do nothing. You should consider using regexes to detect starting and ending tags.
Next, StringBuilder is used to create/edit a string, when you are going to do many append's.
So to remove some tags on string, it wont be needed.

So go with this:
string filteredHtml = System.Text.RegularExpressions.Regex.Replace(initialHtml, "A regex pattern that matches starting OR ending tags", "");

BTW, if you're not so much familiar with regex, RegExr is a good place to start testing.
 

2Scratch

New member
Aug 10, 2013
2
0
0
Visit site
You should go with regex.
string filteredHtml = System.Text.RegularExpressions.Regex.Replace(initialHtml, "A regex pattern that matches starting OR ending tags", "")
 

Members online

Forum statistics

Threads
323,314
Messages
2,243,621
Members
428,056
Latest member
Carnes