From what I gather, it looks as if you want to use a file like
a series and insert into that file wherever you feel like it on
the fly.

  You can modify a file contents as if it were a series by 
openning a port to it.  So, something like:

rbl> probe read %file1.txt
{The quick brown fox jumped over the lazy dog.}
rbl> probe read %file2.txt
{sleek, bad, }

rbl> close insert (find (open %file1.txt) "quick") (read %file2.txt)

rbl> probe read %file1.txt
{The sleek, bad, quick brown fox jumped over the lazy dog.}

  Cheerfulness,

                                        -----EAT

[EMAIL PROTECTED] wrote:
> 
> howdy guys,
> 
> so far, I know how to add to an existing file with write/append. 
> also, I can parse and copy from between html tags, but how can I 
> put what is copied into any spot in another file? (but my 
> question is not just about parse)
> 
> ok, for example, %fox is
> 
> the quick brown fox jumped over the lazy dog.
> 
> to put either a string or another file in there, would it be 
> somthing like,
> 
>  read %fox find quick insert %otherfile
> 
> ?
> 
> not even close, I'm sure... :-)

-- 

  ___________________            ___________________________________
 /\_ Erin A. Thomas  \__________/_ Oddly Brilliant Eerie Years... __\  
/\/_ Phone: (707) 467-8000 __ _____ _ mailto:[EMAIL PROTECTED]  __ ___/
\/\__ The Building Blocks ____ ____  ... of Building Blocks __ __ __\
 \/__REBOL Technologies__/    \_______http://www.rebol.com/_________/

Reply via email to