使用正则表达式捕获twitter #hashtags,但排除#

时间:2017-09-01 18:12:08

标签: javascript regex hashtag

我只想捕获Twitter #hashtag的内容,不包括#。因此#hashtag变为hashtag。我目前的解决方案是使用javascript剥离#,这似乎很笨拙。有没有办法捕获完整的单词,但不包括使用正则表达式的字符?我在这里寻找'是'或'不'。

我有这个字符串:

"This is an #awesome tweet with #amazing #hashtags all over the #place"

当我使用这个正则表达式时:

#(\w+)

我明白了:

["#awesome", "#amazing", "#hashtags", "#place"]

但我希望得到这个:

["awesome", "amazing", "hashtags", "place"]

这是否可以在正则表达式中执行,还是需要继续通过其余的javascript代码删除#

0 个答案:

没有答案