示例:
<html>
<body>
<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:left;">
Content goes here</div>
</body>
</html>
我在nsstring中有html文本(上面),
我需要使用div id获取html标签/ div; 例如:
<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:left;">
Content goes here
</div>
nsstring * strDiveFormat =“需要代码”;
nsslog(@“Div格式:%@”,strDiveFormat);
这应该打印:
<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:left;">
Content goes here
</div>