我有一个字符串,如下所示
NSString *imagesource=@"<img src="http://edge.shop.com/edge.shop.com/ccimg.shop.com/250000/255300/255316/products/1142702303.jpg" title="Marley Coffee&reg; Mystic Morning Organic Ground Coffee" alt="Marley Coffee&reg;";
如何只选择以&#39; src =&#39;开头的文字? (并以空格结尾),在这种情况下是图像的来源
答案 0 :(得分:0)
您可以使用正则表达式,查看此问题,解释如何执行此操作。
How to write regular expressions in Objective C (NSRegularExpression)?