Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iPhone用のHpple/Xpathを使用してURL_TO_GRABを取得するにはどうすればよいですか?正規表現を使用する必要がありますか?
<div class="content"> <a href="URL_TO_GRAB"> Link </a> </div>
本当にありがとう。
このように取得できるはずです。
NSArray * elements = [doc search:@"//a"]; for ( TFHppleElement * element in elements ) { NSString * URLString = [[element attributes] objectForKey:@"href"]; NSLog(@"%@", URLString); }
これはすべてのアンカー リンクに一致し、それらの URL を出力します。