In article <[EMAIL PROTECTED]>, Mtv Europe <[EMAIL PROTECTED]> writes: > Hello All! > > Here is 149.23: > > #!perl -ap056 > sub > t{lc=~y/aeiouy//.v47.s/\w/$&/g}$_=/\./&&(@z=map//?t:$_^t^($_^=t^t),@F).": @F > ".t.": @z > ";y/\0/ /;s/( .{57})...+(. > .* .{0,56}\S+).*/$1..$2/ > > Unfortunately I don't know why it works.
regex effects are localized, so the \w doesn't disturb it. Beautiful solution. So I was on the wrong horse after all.. Most of the other stuff in the post-mortem I had considered, but I never even thought of the monster correction regex.
