in reply to Golf: New spellings for old names

Just to get the ball rolling at 32 chars:

#2345678901234567890123456789012 $n=~y/a-zA-Z//s;$n=~y/yaeiou/iy/

Replies are listed 'Best First'.
Re^2: Golf: New spellings for old names (27)
by tye (Sage) on Nov 21, 2003 at 17:59 UTC

    27:

    y/A-z//s,y/yaeiou/iy/ for$n #2345678 1 2345678 2 234567

                    - tye

      A tie with tye?

      #23456789012345678901234567 $n=~y/yaeiouA-z/iyyyyyA-z/s
        Not if you remove the unnecessary space and use a complement:
        y///cs,y/yaeiou/iy/for$n #2345678 1 2345678 2 234