我只想捕获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代码删除#
?