Ruby 提供字符串中的字母,并形成数列 2015/02/04 15227 str = "a1b2c3d4" mystr = str.split("").select { |e| e if ("a".."z").include? e } p mystr