我正在尝试将字符串拆分为这样Presentation about "Test Driven Development"
的数组:
[ 'Presentation',
'about',
'"Behavior Driven Development"' ]
我已经尝试过CSV::parse_line(string, col_sep: ' ')
,但这会导致
[ 'Presentation',
'about',
'Behavior Driven Development' ] # I'm missing the quotes here
我也尝试了一些正则表达式魔法,但我仍然是初学者并且没有成功。我想这对于专业人士来说很简单,所以也许有人可以指出我正确的方向?谢谢。