我希望能夠從此html獲取src圖像。起初我正在考慮正則表達式和匹配器,但我似乎無法弄清楚如何得到它。我使用JAVA操作。在html中獲取圖像的字符串位置
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<body class="calibre">
<div class="calibre1">
<div class="s">
<p class="calibre2">
<img class="calibre3" src="0001.jpg"/>
</p>
<br id="calibre_pb_0" class="calibre4"/>
</div>
</div>
</body>
</html>
String a; 輸出:A =「SRC =」 0001.JPG「」
你是如何獲得它?腳本在頁面上運行?這是文本解析器的輸入嗎? – kinakuta
什麼語言?什麼平臺? – Oded
不要試圖使用RegEx來解析HTML。如果你這樣做,託尼小馬將吞噬你的靈魂:http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags – Polynomial