目标C:如何提取字符串的一部分(例如以'src ='开头)

时间:2014-11-30 13:57:13

标签: ios xml xcode parsing

我有一个字符串,如下所示

NSString *imagesource=@"<img src="http://edge.shop.com/edge.shop.com/ccimg.shop.com/250000/255300/255316/products/1142702303.jpg" title="Marley Coffee® Mystic Morning Organic Ground Coffee" alt="Marley Coffee®";        

如何只选择以' src ='开头的文字? (并以空格结尾),在这种情况下是图像的来源

1 个答案:

答案 0 :(得分:0)

您可以使用正则表达式,查看此问题,解释如何执行此操作。

How to write regular expressions in Objective C (NSRegularExpression)?