Remove HTML Tags from an NSString on the iPhone

前端 未结 22 1606
心在旅途
心在旅途 2020-11-22 10:02

There are a couple of different ways to remove HTML tags from an NSString in Cocoa.

One way is to render the string into an

22条回答
  •  无人共我
    2020-11-22 10:28

    If you want to get the content without the html tags from the web page (HTML document) , then use this code inside the UIWebViewDidfinishLoading delegate method.

      NSString *myText = [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.textContent"];
    

提交回复
热议问题