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?
質問する
110 次
2 に答える
2
文字列#スキャンを使用
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 に答える