[REBOL] using find/only to match blocks Re:

2000-08-30 Thread lmecir
Hi, find/only C [2 3 4] should work > Supposedly find/only treats a series as a single value, but I am not sure how this is done. I was interested in find the place in a series at the place where a block is found: > > >> C: [ 1 [ 2 3 4] 5 6 ] > > >> find C "234" ; what I want to do > >> fin

[REBOL] using find/only to match blocks

2000-08-29 Thread princepawn
Supposedly find/only treats a series as a single value, but I am not sure how this is done. I was interested in find the place in a series at the place where a block is found: >> C: [ 1 [ 2 3 4] 5 6 ] >> find C "234" ; what I want to do >> find C [ 2 3 4 ] ; or this ... whatever works --- ; r