On Saturday, 30-July-2005 at 18:14:39 Kai Peters wrote, > Arghh -= that was ugly! Let's try this again: Hi Parsers ~ why does >parse below not return= true? Thanks, Kai  >> st: "Kai >was= here" =3D=3D "Kai was here" >> parse/all st [ thru "ai"= copy >chunkto "here" ] =3D=3D false >> probe chunk " was " =3D=3D " was " >>
Which wasn't much better, right? :-) I gather this is what you were attempting... st: "Kai was here" parse/all st [thru "ai" copy chunk to "here"] Change the parse to... parse/all st [thru "ai" copy chunk to "here" to end] and it should work. Also, I don't think /all has any effect when parsing a block. Can others confirm that? -- Carl Read. -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
