简体   繁体   中英

Rebol/Red parse: how to copy between 2 marks

I want to be able to parse between 2 marks in parse rule. For a contrieved example:

src: {a b c d e f}

rule: [
    to "b" mark1: thru "e" mark2: 
    to mark1 copy text to mark2
]

This doesn't work, text contains "[" instead of what I'd like to get:

b c d e

You're trying to implement a "DO desire" of copying using PARSE. PARSE's COPY is looking for patterns, not treating the series as positions.

You can escape into DO in mid-parse via a PAREN!, it will run if the parse rule reaches that point.

src: {a b c d e f}

rule: [
    to "b" mark1: thru "e" mark2: 
    (text: copy/part mark1 mark2)
    to end ;-- not strictly necessary, but makes PARSE return true
]

parse src rule

That will give you text as bcde

Note that you can't have it both ways, either with COPY or with TO. TO <series!> meant "look for b", not "jump to the position of b". So when you say to mark1 you're invoking another match. If you want to set the parse position to the specific position recorded in mark1, use :mark1 in the parse rule.

two alternative solutions/rules working in Red

rule: [
   to "b" copy text thru "e" to end
]

and

 rule: [ to "b" collect  [keep thru "e"] to end]
 text: first parse src rule

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM