我使用這個正則表達式代碼來獲取標籤,但不值:使用正則表達式來獲取HTML標記中的值?
(<input type="hidden" name="pt" id="pt" value=")|(" \/>)
從這個代碼:
<input type="hidden" name="pt" id="pt" value="f64b1aadf7baa6e416dbfb6bf95fa031" />
但我會怎麼做的其他方式?獲取價值,但不是周圍的標籤?所以我只會得到「f64b1aadf7baa6e416dbfb6bf95fa031」(不帶引號)。謝謝。
[不使用正則表達式解析HTML等](http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags) – Donut
什麼語言?所有使用正則表達式都有點不同。 – Chriszuma
嘗試'value =「f64b1aadf7baa6e416dbfb6bf95fa031」'。你必須更具體地說明你的解決方案應該適用於哪種情況 - 所有有效的HTML? – Tim