That will work great! Thank you Romano, Gregg, and Sunanda..

I really appreciate your help.

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Romano Paolo Tenca
Sent: Tuesday, November 09, 2004 2:41 PM
To: [EMAIL PROTECTED]
Subject: [REBOL] Re: Series manipulation Help


You could try this function:

    cut: func [series /part range][
        range: any [range 1]
        part: copy/part series range
        remove/part series range
        part
   ]

    b: [1 2 3 4 5 6]
    if tmp: find b 3 [
        x: cut/part  tmp 2
        insert tail tmp x
    ]

---
Ciao
Romano
--=20
To unsubscribe from the list, just send an email to rebol-request
at rebol.com with unsubscribe as the subject.


-- 
To unsubscribe from the list, just send an email to rebol-request
at rebol.com with unsubscribe as the subject.

Reply via email to