Ruby 提供字符串中的字母,并形成数列

str = "a1b2c3d4"

mystr = str.split("").select { |e| e if ("a".."z").include? e }

p mystr

编程技巧