Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: html to text and parsing 2 strings

From: allenk:powerup:au at: 8-May-2001 14:51

Here's a starting point from the script library Cheers, Allen K REBOL [ Title: "Web HTML Tag Extractor" File: %websplit.r Date: 20-May-1999 Purpose: "Separate the HTML tags from the body text of a document." Category: [web net text 3] ] tags: make block! 100 text: make string! 8000 html-code: [ copy tag ["<" thru ">"] (append tags tag) | copy txt to "<" (append text txt) ] page: read http://www.rebol.com parse page [to "<" some html-code] foreach tag tags [print tag] print text