I want to strip all tags, remove the [show][Hide] stuffs from wikipedia, or is there some website that makes pages in more readable format.

Please I am aware of the Wikipedia printable version, but I don't need any tags in that, as I have some other use. So please answer the original question only, about any website or webservice or code snippets in php/C# to remove the tags from a webpages.

Also like when I copy some list from firefox it replaces <li> with the *, is it possible to set something in firefox to return some other non readable character like some kind of

  • dot

  • link

    71% accept rate
    feedback

    4 Answers

    up vote 0 down vote accepted

    You could use an HTML parser, BeautifulSoup (Python) or Simple HTML DOM for example. Or you could try using an XML parser.

    link
    I think the simple HTML DOM looks the best, easy and extensible. – Priyank Bolia Nov 24 '09 at 16:10
    feedback

    You can start by taking a look at the strip_tags function.

    link
    looks cool, Is there something in C# or some sort of webservice too, as I don't want to direct each page request to my webservers. – Priyank Bolia Nov 24 '09 at 8:29
    feedback

    I want to strip all tags, remove the [show][Hide] stuffs from wikipedia, or is there some website that makes pages in more readable format.

    You should take a look at DBpedia, Wikipedia, but just the data.

    http://dbpedia.org/About

    link
    doesn't look the right thing, its more like semantic webpage, it just have the heading and the links and meta info about the articles. I don't need the metainfo or semantic info, I need a very simple webpage that is similar to text file without much tags except image, paragraphs, etc. – Priyank Bolia Nov 24 '09 at 9:14
    feedback

    What about htmlagilitypack

    htmlagilitypackt

    Similar thread available in stackoverflow

    Is there a Wikipedia API?

    Try this function.

    Dim pattern As String = "<(.|\n)*?>"
    Return System.Text.RegularExpressions.Regex.Replace(strHtmlString, pattern, String.Empty).Trim()
    
    link
    2  
    Bad choice, regex is not used for HTML parsing. There are lot of question and internet articles for details. codinghorror.com/blog/archives/001311.html – Priyank Bolia Nov 24 '09 at 8:48
    that would create another problem in its own, how to create a webpage using the XML, then I have to write even bigger code to generate the html from the parsed XML – Priyank Bolia Nov 24 '09 at 10:03
    feedback

    Your Answer

     
    or
    required, but never shown

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