[REBOL] Parse, spaces and ()s Re:(2)

2000-09-01 Thread davidv
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

[REBOL] Parse, spaces and ()s Re:

2000-08-31 Thread splair
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

[REBOL] Parse, spaces and ()s

2000-08-31 Thread davidv
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