0

如果我有一段@text,我想从中提取@twitter 句柄并将它们放入一个列表中,我该怎么做?

4

2 回答 2

2

使用字符串#scan

使用String#scan方法将表达式提取到数组中。例如:

str = <<'EOF'
  If I have a paragraph of @text and I want to extract the
  @twitter handles from it and make them into a list, how
  would I do this?
EOF

str.scan /@\S+/
#=> ["@text", "@twitter"]
于 2013-09-17T02:42:41.360 回答
0

假设你的@text 是一个字符串,使用正则表达式提取@twitter 句柄并将它们添加到一个数组中。

于 2013-09-17T02:12:15.100 回答