Re: <reject> and whitespace
[email protected] (Damian Conway)
| Newsgroups | perl.recdescent |
|---|---|
| Message-ID | <[email protected]> |
> Hmm, I guess I could make this simpler and do this: > > line: word <reject: $thiscolumn != 22> word > word: /\S+/ > > right? Depends. The <reject:...> won't skip any whitespace after the first word. You may want: line: word '' <reject: $thiscolumn != 22> word Damian