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

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

str = "a1b2c3d4"

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

p mystr