-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[js] 第118天 使用正则去掉html中标签与标签之间的空格 #1055
Labels
js
JavaScript
Comments
htmlStr.replace(/>\s+</g, '><') |
const html = `
<div>
<span class="cls" id="spa">111</span>
<span>222</span>
</div>`;
String.prototype._trim = function () {
return this.replace(/>[\s]+</g, '><')
} |
珠玉在前 const html = `
<div>
<span> 我两边怎么有空格? </span>
</div>
`
console.log(html.replace(/>\s*(\S*)\s*</g, ">$1<")); |
htmlStr.replace(/>\s+</g, '><') |
1 similar comment
htmlStr.replace(/>\s+</g, '><') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
第118天 使用正则去掉html中标签与标签之间的空格
The text was updated successfully, but these errors were encountered: