せずに、文字列からすべてのハッシュタグ:エキス、私はこのような文字列からハッシュタグを抽出しています。#
const mystring = 'huehue #arebaba,saas #ole #cool asdsad #aaa';
const hashtags = mystring.match(/#\w+/g) || [];
console.log(hashtags);
が出力されます:
:マッチがあるように私の正規表現があるべき方法['#arebaba', '#ole', '#cool', '#aaa']
['arebaba', 'ole', 'cool', 'aaa']
マップ機能を使用したくありません!コードを短縮することができる
の可能な複製を[実行する方法JavaScriptで正規表現のすべての一致を取得しますか?](https://stackoverflow.com/質問/ 6323417/how-do-i-retrieve-all-matches-in-a-regular-expression-in-javascript) – choasia
regexキャプチャグループについて読んでください。 http://www.regular-expressions.info/brackets.html –