On Fri, 01 Feb 2002 at 10:58:10 -0500, Ala Qumsieh wrote: > Rick Klement writes: > > s/\b\d\b/0$&/g > > (it's the effects of playing a lot of golf lately... :) > Golf?! > s|\b\d/|0$&|g
Perhaps some of the baroque constructions seen in this thread are actually a game of perl flog, designed to be the longest possible solution :-) Oh, and s|\b./|0$&|g works, too. Ian