0
我想找到一個有效的正則表達式,我可以用它去掉所有的空格或換行符。如何從html文檔中去除空白
下面是我試過的東西。
((\ S | \ N |嗎?\ r)<(\ S | \ n | \ r)的?)|(\ S | \ n | \ R)>(\ S?| \ n | \ r)的
本文
< tag src="abc" testattribute >
<script > any script </script >
<tag2>what is this </tag2>
<tag>
上我想最終的結果是正是這一點。
<tag src="abc" testattribute><script>any script</script><tag2>what is this</tag2><tag>
我一直在尋找爲他人在這裏一個JavaScript的解決辦法是什麼我試着用HWND的解決方案。 (?= <|>)\ S * | – varun
也許嘗試|(><)\s*(?![^><]?!):'(?:<|>)|(?!> | <)\s*(?![^><])(\ S *)' – hwnd