Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

help #64

Closed
siosheChina opened this issue Aug 11, 2015 · 1 comment
Closed

help #64

siosheChina opened this issue Aug 11, 2015 · 1 comment

Comments

@siosheChina
Copy link

how can I get the image url in this string ?
8c6fa975-8978-4d6f-894f-86766912e536

@balkarov
Copy link

htmlDataParser = [TFHpple hppleWithHTMLData:htmlData];
xpathQueryString = @"//div[@class='top']";

htmlNodes = [htmlDataParser searchWithXPathQuery:xpathQueryString];
NSString *imageUrl;

for (TFHppleElement* element in htmlNodes) {
    imageUrl = [element objectForKey:@"style"];
}

NSRange r1 = [imageUrl rangeOfString:@"url("];
NSRange r2 = [imageUrl rangeOfString:@")"];
NSRange rSub = NSMakeRange(r1.location + r1.length, r2.location - r1.location - r1.length);
imageUrl = [imageUrl substringWithRange:rSub];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants