2
我想在開始時分割文本,並結束一些標籤(div和p)不是全部。在Java中使用正則表達式分割字符串
Input:
String html = "text<div>some text</div><tag>text</tag><span>asd</span><p>text</p>text";
Output:
text
<div>some text</div>
<tag>text</tag><span>asd</span>
<p>text</p>
text
我應該使用哪個正則表達式?
一個名爲HTML解析器的正則表達式。 – m0skit0
另請參閱http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 –
嘗試使用像JSoup的HTML解析 – selig