[REBOL] Re: Parse Reverse
From: nitsch-lists:netcologne at: 6-Nov-2001 4:02
RE: [REBOL] Parse Reverse
[rondon--andrade--uol--com--br] wrote:
> Hi!
>
> Is there any way to make a parse from the left to right ? From the end of
> data to the beginning?
>
ugly, but
>> parse probe head reverse "hello world" [copy txt to "olleh" to end]
dlrow olleh
== true
>> head reverse txt
== " world"
also there is find/reverse, but no real parse..
> It should be cool if we could have a refinement in parse, such as
> parse/all/reverse. Is it very hard to be implemented ?
>
would like a real parse/reverse a lot too.
-Volker