The Skip Value
- A special regular expression that defines what to ignore
- The default is to skip all white space and line breaks:
$Parse::RecDescent::skip = '\s*';
- Can be overridden to allow access to white space as well:
$Parse::RecDescent::skip = '';