Cheers, I'll give it a go.
- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 31, 2000 6:12 PM
Subject: [REBOL] Parse, spaces and ()s Re:
Actually, the ()'s are not causing the results you're getting. For rul
Actually, the ()'s are not causing the results you're getting. For rule-based
parsing, spaces are ignored unless you use the /ALL refinement.
To get the results you want try:
parse/all str [some rule-block]
[EMAIL PROTECTED] wrote:
> Newby question...
>
> Can anyone tell me what is going
Newby question...
Can anyone tell me what is going on here? The following output is produced by
the script below
one
(
two three
)
four
(
five
(
six seven
)
eight
)
Why do "two" and "three" appear as one string (same with "six" and "seven")
and not split up at the space between them like everyt