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: gchiu:compkarori at: 8-May-2001 16:56

On Tue, 8 May 2001 14:23:38 +1000 "Brett Handley" <[brett--codeconscious--com]> wrote:
> parse/all read http://www.rebol.com [ > thru "<title>" copy text to </title> > (print text) > ]
You don't require the quotes around tags as Rebol recognises them. parse read http://www.rebol.com [ thru <title> copy text to </title> ( print text ) ] -- Graham Chiu