文字列の「@」に対応する単語を抽出し、リストに保存したい:
例えば:
"This is @crazy_boy crazy" should give ["crazy_boy"]
"This is @crazy_boy crazy @foobar" should give ["crazy_boy","foobar"]
"This statement is boring" should give [] //or whatever is an empty list
パイソンで
targets = re.findall(r'(?<=@)\w+', text)
上記はトリックを行うために使用されます..しかし、Javaではよくわかりません。ありがとう