[REBOL] Re: Problems with parsing
From: mario:cassani:icl at: 29-Nov-2001 16:20
Hallo Peter,
> Any suggestions on how to make a parse rule for text
> NOT including a special pattern?
'parse returns 'true or 'false if the rule is or isn't
matched so, if you make a rule to check if the pattern
exists:
not parse given-text pattern-rule
will be 'true if the pattern is not included.
> Crystal clear?!?
Hope this helps. If you share the piece of code making
you mad maybe helping you will be easiear as 'parse is a
beast to be tamed playing with the REBOL console and some
sample data and rules.
Mario