Vue中去掉富文本中的html标签、空格、换行
Vue中去掉富文本中的html标签、空格、换行
·
写个函数,一步搞定,多个条件用竖线(|)分割,也可只写自己需要的
function htmlToString(htmlStr){
return htmlStr.replace(/<\/?.+?\/?>|\r|\n|\s*/g,'')
}
去掉html标签
htmlStr.replace(/<\/?.+?\/?>/g,'')
去掉空格、换行
htmlStr.replace(/\r|\n|\s/g,'')
去掉字符串内所有的空格
htmlStr.replace(/\s*/g,'')
去掉字符串内两头的空格
htmlStr.replace(/^\s*|\s*$/g,'')
去除字符串内左侧的空格
htmlStr.replace(/^\s*/,'')
去除字符串内右侧的空格
htmlStr.replace(/(\s*$)/g,'')
更多推荐
已为社区贡献2条内容
所有评论(0)