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

[REBOL] Re: Complex Series Parsing (Part 2)

From: depotcity:home at: 9-Mar-2001 1:25

This is on the right track. But more complexity would arise... here is an advanced XML structure... y: [<tag0></tag0> <text> this and that <tag1>those </tag1>and these</text><tag2></tag2><text>There and then</text>] output would be... out: [ <tag0> </tag0> <text> this and that <tag1> <text> those </tag1> <text> and these </text> <tag2> </tag2> <text> There and then </text> ] There is method to the madness, I've got the "madness" part down pat, now if I could only come up with "the method". Thanks Terry Brownell