say hashtag:从任何文本中提取提及(@mention)或主题标签(#hashtag) 源码
提及标签 从任何文本中提取提及(@mention)和/或主题标签(#hashtag) 如何使用 const extract = require ( 'mention-hashtag' ) const mentions = extract ( 'Any text with @mention' ) ; // mentions == ['@mention'] const hashtags = extract ( 'Any text with #hashtag' , '#' ) ; // hashtags == ['#hashtag'] const all = extract ( 'Any text
下载地址
用户评论