写个函数,一步搞定,多个条件用竖线(|)分割,也可只写自己需要的

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,'')

其他情况参考

Logo

前往低代码交流专区

更多推荐