Extract Part Of HTML In C/Objective-C
I need to extract the detail content of a website while preserve all formatting of the division. The section I wish to extract is: ...
&l
Solution 1:
Simple Javascript solution: document.getElementsByClassName("detailContent")
Combine that with UIWebView's support for running Javascript and you might have a more concise solution.
Post a Comment for "Extract Part Of HTML In C/Objective-C"