我在读取字符串的图像路径时遇到问题 -> background-image:url(/assets/test.jpg)
我想让括号内的字符串没有括号self。
这是我使用的代码:
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"\\bbackground-image:url\(.*\)\\b" options:NSRegularExpressionCaseInsensitive error:nil];
thumbnail = [regex stringByReplacingMatchesInString:thumbnail options:0 range:NSMakeRange(0, [thumbnail length]) withTemplate:@"$1"];
我得到的是(/assets/test.jpg)