Re: Self-recognizing programs and regular expressions
[email protected] (Karsten Sperling)
| Newsgroups | perl.fwp |
|---|---|
| Message-ID | <[email protected]> |
On Monday, March 7, 2005, Jasvir Nagra wrote:
> The par entry is:
> Entry Score
> ^.{6}$ 255^6
Strictly speaking that would be 2 * 255^6 because of the optional
trailing newline. Still, it's better than ^.{7}\z with 255^7.