【发布时间】:2019-01-01 07:14:37
【问题描述】:
如何将主题标签转换为普通文本?
例如:
<div class="hashtag">Hello #my_best_friend, you are #welcome</div>
结果: 你好,我最好的朋友,不客气
【问题讨论】:
-
console.log($('.hashtag').first().html().replace(/#/g, '')); -
@RavishaHesh 不会删除下划线。
-
console.log($('.hashtag').first().html().replace(/#/g, '').replace('/_/g', ' '));