iphone - 从字符串 iPhone 中提取 HTML 属性
<p><p>我有一个从网站响应中获得的 html 字符串。我在那里所做的一切都很棒,我没有任何困难。我需要做的是在 html 中获取 <strong>only</strong> <code>href</code> 属性。获取该属性中包含的此 URL 的最佳方法是什么。如果有必要,我对任何外部库都是开放的,我只想要最有效的方式。谢谢。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>使用此 API 解析 HTML 代码并选择您想要的元素。</p>
<p><em>ElementParser 是轻量级框架,可轻松访问 xml 和 html 内容。它不想迷失在 HTML 和 XML 规范的复杂性中,而是希望不掩盖它们本质上的简单性。它不会做所有事情,它渴望做到“刚刚好”。</em></p>
<p>来源:<a href="http://touchtank.wordpress.com/element-parser/" rel="noreferrer noopener nofollow">http://touchtank.wordpress.com/element-parser/</a> </p>
<hr/>
<p>这里是一个如何使用 <code>ElementParser</code> 和你自己的例子的例子。我希望这会有所帮助。</p>
<p>圣诞快乐!嗬嗬嗬</p>
<pre><code>// Here you create the parser, don't forget to #import "Element.h" and #import "ElementParser.h"
ElementParser * parser = [ init];
// This is the HTML source code that you want to parse
DocumentRoot* document = ;
// Create an array where you will put all the <a></a> elements
NSArray* elements = ;
// Iterate though the array, for each element pick the "href" attribute
NSMutableArray* results = ;
for (Element* element in elements){
NSString* snipet = ;
// Add the result for each element to the "results" array
;
}
// Print the results on the screen
NSLog(@"%@",);
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 从字符串 iPhone 中提取 HTML 属性,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8622741/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8622741/
</a>
</p>
页:
[1]