要求:
var str="<p><h1>the emulsion janus</h1> simulate of cu<sub>2</sub>CO</p>"
想分离成json格式:
str_json={"h1":"the emulsion janus","text1":"simulate of cu","sub":2,"text2":"CO"}
补充:
分隔符只有<sub></sub>,<sup></sup>,<h1></h1>,<p></p>。
如何用正则表达式分离?或者先计算indexof,然后用普通的字符串分割?
因为要计算大量的,所以要考虑效率。