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

[REBOL] replace question

From: winsng:optusnet:au at: 19-May-2001 10:05

How do you replace several tag markers in a document with their corresponding texts from text files? I did the following and it did not work: The idea is to replace markers with different texts replace1: read %replace1.r ;simple texts replace2: read %replace2.r ;simple texts body: read %body.r ;contains the markers markers: ["<--tag1-->" <--tag2-->"] items: [replace1 replace2] replace body markers items ;this did not work, no error