怎样将字符串:str = "'a','b','c','d' ,'e'','f','g'" => ary = ['a','b','c','d',......]
'abc'.split('')
首先要感谢您。。但是这个我已经尝试不太对啊同事!
str.split(',')
首先要感谢您的回答。。但是这个我已经尝试不太对啊同事!
# 转换成数组 b = a.split(/'*,*'/).select {|d| d != ""} # 转换成字符 "'#{b.join("','")}'"
str.scan('\w')或者str.scan(/(?<=').*(?=')/)
str.scan('\w')
str.scan(/(?<=').*(?=')/)
谢谢
谢谢您