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

[REBOL] Printing a line of data

From: john:thousand-hills at: 24-Aug-2001 6:04

I read a text file using this code: data: read/lines %route.txt It produced the line below with this code: print pick data 4 9:54 9:57 10:03 10:06 10:12 10:20 10:23 10:27 10:34 10:43 10:48 10:56 11:06 ____________________ Is there a way to print this line with code between the tab delimited groups? Like this: <TR><TD> 9:54 </TD><TD> 9:57 </TD><TD> 10:03 </TD></TR> etc... etc...