码迷,mamicode.com
首页 > 其他好文 > 详细

NSRange

时间:2015-08-27 21:20:29      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

    //
    // source == <a href="http://app.weibo.com/t/feed/2llosp" rel="nofollow">OPPO_N1mini</a>
    NSRange range;
    //rangeOfString是从左到右检索出第一个>的位置
    range.location = [source rangeOfString:@">"].location+1;
    range.length = [source rangeOfString:@"</"].location - range.location;
    
    NSString *str = [source substringWithRange:range];
    _source = [NSString stringWithFormat:@"来自 %@",str];


NSRange

标签:

原文地址:http://my.oschina.net/u/2346786/blog/498348

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!