我有一個包含在HTML的各個地方的兩個錨標記一個HTML片段匹配第二標籤。如何在這個字符串
<span id="ctl00_PlaceHolderTitleBreadcrumb_ContentMap">
<span><a class="ms-sitemapdirectional" href="/">My Site</a></span>
<span> > </span>
<span><a class="ms-sitemapdirectional" href="/Lists/Announcements/AllItems.aspx">Announcements</a></span>
<span> > </span>
<span class="ms-sitemapdirectional">Settings</span>
</span>
我期待寫一個正則表達式,將返回第二錨標記,其中有「通告」,因爲它是文本。在試圖寫一個表達式時,我不斷得到兩個錨標籤 - 但我只對第二個標籤感興趣。
是否有可能在第二標記只匹配?
編輯:
我永遠知道我在尋找具有「公告」在它的錨標籤的文本,如果沒有什麼幫助。
這是一個命令行工具嗎? – 2009-11-06 17:23:38
[可以提供一些爲什麼很難用正則表達式分析XML和HTML的例子嗎?](http://stackoverflow.com/questions/701166/can-you-provide-some-examples-of-爲什麼它很難解析xml和html-with-a-rege) – 2011-07-09 20:53:06
[RegEx match open tags not except XHTML self-contained tags](http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags) – 2011-09-15 14:17:29