ios 解析Html資料

2021-08-21 14:06:50 字數 650 閱讀 6524

前段時間遇到後台返回資料,需要解析html格式資料,經過折騰了一會就直接寫了乙個方法呼叫  其實很簡單  我直接貼上**  下方再附上一張**的截圖  直接看的**更容易一點 

+(nsmutablearray*)analysishtml:(nsstring *)html else if ([imghtml rangeofstring:@"src="].location != nsnotfound) {

tmparray = [imghtml componentsseparatedbystring:@"src="];

if (tmparray.count >= 2) {

nsstring *src = tmparray[1];

nsuinteger loc = [src rangeofstring:@"\""].location;

if (loc != nsnotfound) {

src = [src substringtoindex:loc];

nslog(@"正確解析出來的src為:%@", src);

HTML資料解析

html資料解析 用到開源 htmlparser htmlnode.m htmlnode.h htmlparser.m htmlparser.h 解析你的資料前還有三步 1在工程中新增libxml2的庫 2 在header search path中新增 usr include libxml2 3 將...

iOS開發中的HTML解析

在進行解析前,先將下面的第三方類新增到工程中 新增以上三個類必須新增乙個庫,這個庫是 libxml2.2.dylib。還需要設定一些路徑引數這個路徑的設定,在 targets中,在build settings搜尋header search paths,將debug和release設定不同的值 deb...

iOS解析資料坑

一起用了三種解析方式,xml和protobuf出了問題,應該是ios限制的 json是借用了c 的newtonsoft public static string tojson this t obj where t class public static t fromjson this string ...