Re: [SAtalk] Odd DOUBLE_CAPSWORD hits

2002-07-01 Thread Theo Van Dinter
On Mon, Jul 01, 2002 at 09:12:51AM -0700, Bart Schaefer wrote: > Another case of lousy descriptions? > > describe DOUBLE_CAPSWORD A word in all caps repeated on the line Yeah. Everyone thinks it's lines, but it's not. This comes up on the list every now and again. -- Randomly Generated

Re: [SAtalk] Odd DOUBLE_CAPSWORD hits

2002-07-01 Thread Bart Schaefer
On Mon, 1 Jul 2002, Theo Van Dinter wrote: > That's not how SA works though, it's not a per-line thing, it's a per > paragraph thing. Another case of lousy descriptions? describe DOUBLE_CAPSWORD A word in all caps repeated on the line > perl -ne 'BEGIN { $/="" } print if /\b([A-Z]{3,})\b

Re: [SAtalk] Odd DOUBLE_CAPSWORD hits

2002-07-01 Thread Theo Van Dinter
On Mon, Jul 01, 2002 at 08:59:28AM -0700, Bart Schaefer wrote: > I just got a message that scored on DOUBLE_CAPSWORD, but I ran it through > perl -ne 'print if /\b([A-Z]{3,})\b.{0,50}\b\1\b/' > and it that didn't print anything. If I append an 'i' to the pattern to > make it case-insensitiv

[SAtalk] Odd DOUBLE_CAPSWORD hits

2002-07-01 Thread Bart Schaefer
Using 2.31 installed from CPAN: I just got a message that scored on DOUBLE_CAPSWORD, but I ran it through perl -ne 'print if /\b([A-Z]{3,})\b.{0,50}\b\1\b/' and it that didn't print anything. If I append an 'i' to the pattern to make it case-insensitive, it hits on three lines. Is there