我有一個html代碼。像這樣:正則表達式替換文本中的空格
<div>
(<- it is a tab) blaaaa ttoooo
<span id="span" class="class">Hiii Bye</span>
(<- these are 4 space character)
<span id="span" class="class">Welcome Back</span>
</div>
我想更換任何空間(S)(只有空間:" "
,並沒有任何標籤(\t
))>
和<
(指之間的空間(S)是不是在一個HTML標籤)與
。 (PHP和正則表達式)
所以更換後,我的代碼它它:
<div>
blaaaa ttoooo
<span id="span" class="class">Hiii Bye</span>
<- these are 4 space character
<span id="span" class="class">Welcome Back</span>
</div>
我怎樣才能做到這一點?
非常感謝。 ...
[RegEx match open tags but XHTML self-contained tags]可能的重複(http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags) – phihag 2011-03-28 16:50:50
Hooray,又一個想用正則表達式來處理HTML的程序員。 – 2011-03-28 16:50:53
@Matt:爲什麼不讓他們? – mvds 2011-03-28 16:55:29