我有一个包含名称的文本,每个名称都写在2个撇号之间。 例如:
'James' is the best player we had since 'Jane' left
我需要从文本中提取所有这些名称,并将它们插入到我的数据库中的一列中。 我是Rails的新手,我想知道如何最好地解析这个文本。
答案 0 :(得分:2)
"'James' is the best player we had since 'Jane' left".scan(/\'(\w+)\'/).flatten
#=> ["James", "Jane"]