// NSString
        //代开API文档
        //Xcode -> help - Documentation and API Reference
    
        //快速打开API
        //alt(option) + 鼠标左键
    
        //快速进入头文件
        //command + 鼠标左键
    
//        NSString是oc中的不可变字符串类,被创建后,不能修改
    
        //常用方法
        //1.创建字符串
    NSString *str1 = @"iPhone";
    NSLog(@"%@", str1);
    NSString *str2 = [[NSString alloc] init];
    NSLog(@"%@", str2);
    NSString *str3 = [[NSString alloc] initWithString:@"iPhone"];
    NSLog(@"%@", str3);
//    NSString *str4 = [[NSString alloc] initWithString:nil];
//    NSLog(@"%@", str4);  error
    NSString *str5 = [[NSString alloc] initWithFormat:@"%@5s", str1];
    NSLog(@"%@", str5);
    
//    NSString *str6 = [NSString stringWithString:@"iPhone"];
//    NSLog(@"%@", str6);
    NSString *str7 = [NSString stringWithFormat:@"123"];
    NSLog(@"%@", str7);
        //2.获取字符串长度
    NSUInteger length = [str7 length];
    NSLog(@"%lu", length);
    
        //3.判断字符串是否以指定字符串开始或结束
    NSString *str8 = @"123ABC";
    
   BOOL result = [str8 hasPrefix:@"223"];
    NSLog(@"%d", result);
    BOOL result1 = [str8 hasSuffix:@"C"];
    NSLog(@"%d", result1);
    
        //4.搜索字符串的范围
    
    NSRange range = [str8 rangeOfString:@"3A"];
    
    NSLog(@"%lu, %lu", range.length, range.location);
    
        //5.字符串截取
    NSRange rs = {3, 3};
    NSString *str9 = [str8 substringWithRange:rs];
    NSLog(@"%@", str9);
        //6.拼接字符串
   NSString *str10 = [str8 stringByAppendingString:@"123"];
    NSLog(@"%@", str8);
    NSLog(@"%@", str10);

//7.替换字符串
   NSString *str11 = [str8 stringByReplacingOccurrencesOfString:@"3A" withString:@"A"];
    NSLog(@"%@", str11);
    
        //8.字符串比较"123" "123" "321"
    
    NSInteger flag = [@"123" compare:@"123"];
    NSLog(@"%ld", flag);
    
        //9.字符串和数值类型的转换
    NSString *str12 = @"123";
    int a = [str12 intValue];
    NSLog(@"%d", a);
    double b = [str12 doubleValue];
    NSLog(@"%f", b);
    float c = [str12 floatValue];
    NSLog(@"%f", c);
    BOOL e = [str12 boolValue];
    NSLog(@"%d", e);

//10.大小写转换操作
    NSString *aaa = @"aBcE";
    NSLog(@"%@", [aaa capitalizedString]);
    NSLog(@"%@", [aaa uppercaseString]);
    NSLog(@"%@", [aaa lowercaseString]);
    NSLog(@"%@", aaa);
    
    
        //NSMutableString
        //capctiy 是一个预估的值,可以改变
        //由于内存比较紧张,一般把capctiy设置成0,让字符串自己去判断大小,扩充容器大小
        //创建一个新的字符串
    NSMutableString *mString = [[NSMutableString alloc] initWithCapacity:0];
        //拼接字符串
    [mString appendString:@"taiyang"];
    NSLog(@"%@", mString);
    
         //插入字符
    [mString insertString:@"aaa" atIndex:1];
    NSLog(@"%@", mString);
    
        //删除字符串
//    NSRange r = {2, 3};
//    [mString deleteCharactersInRange:r];
//             ||  等价
    [mString deleteCharactersInRange

练习 :

//    1.截取字符串“20|http://www.baidu.com”中 “|” 前面和后面的字符串,并输出。

//    NSString *str1 = @"20|http://www.baidu.com";
//         1
//    NSString *str2 = [str1 substringWithRange:NSMakeRange(0, 2)];
//    NSString *str3 = [str1 substringWithRange:NSMakeRange(3, 20)];
//    NSLog(@"str2 = %@ str3 = %@", str2, str3);

//2
//    NSString *str2 = [str1 substringFromIndex:3];
//    NSLog(@"str2 = '%@'", str2);
//    NSString *str3 = [str1 substringToIndex:2];
//    NSLog(@"str3 = '%@'", str3);

//    2.将“文艺青年”改成“213青年”。
    
//    NSString *str1 = @"文艺青年";
//    NSString *str2 = [str1 stringByReplacingOccurrencesOfString:@"文艺" withString:@"213"];
//    NSLog(@"%@", str2);

//    3.给定一个图片文件名,判断字符串中是否有后缀,如果有(如:以“.png”结尾),就替换成“jpg”;如果没有,就拼接”.jpg”

//    NSString *str1 = @"taiyang";
//    NSUInteger length = [str1 length];
//    NSString *str2 = [str1 substringFromIndex:length - 4];
//    if ([@".jpg" compare:str2] == 0) {
//        NSLog(@"该字符串是以.jpg开头");
//    }else if ([@".png" compare:str2] == 0){
//        NSString *str3 = [str1 stringByReplacingOccurrencesOfString:@".png" withString:@".jpg"];
//        NSLog(@"str3 = '%@'", str3);
//    }else{
//        NSString *str4 = [str1 stringByAppendingString:@".jpg"];
//        NSLog(@"str4 = '%@'", str4);
//    }

 

NSString NSMutableString的更多相关文章

  1. NSString&NSMutableString常用操作梳理(转)

    作者:弦苦 授权本站转载. 上一篇梳理了NSArray&NSMutableArray常用操作,这次来梳理一下Objective-C中每天都要用到的字符串处理类——NSString. Objec ...

  2. 关于NSString,NSMutableString,NSArray,NSMutableArray,NSDictionary,NSMutableDictionary

    NSString,NSMutableString,NSArray,NSMutableArray,NSDictionary,NSMutableDictionary 在 OC 中我们天天都要用,而我们要怎 ...

  3. NSString&NSMutableString常用操作梳理

    http://www.cocoachina.com/ios/20150724/12722.html 上一篇梳理了NSArray&NSMutableArray常用操作,这次来梳理一下Object ...

  4. NSString NSMutableString copy mutableCopy retain weak strong整合

    copy retain assign的差别在于对象属性的set方法 NSString 与 NSMutableString NSString是不可变字符串对象,这句话的意思,结合代码: #import ...

  5. [转] NSString / NSMutableString 字符串处理,常用代码

     原文 :  http://justcoding.iteye.com/blog/1405951 Objective-C 中核心处理字符串的类是 NSString 与 NSMutableString , ...

  6. 【转】 NSString / NSMutableString 字符串处理,常用代码 (实例)

    Objective-C 中核心处理字符串的类是 NSString 与 NSMutableString ,这两个类最大的区别就是NSString 创建赋值以后该字符串的内容与长度不能在动态的更改,除非重 ...

  7. NSString / NSMutableString 字符串处理,常用代码 (实例)

    http://blog.csdn.net/likendsl/article/details/7417878 Objective-C 中核心处理字符串的类是 NSString 与 NSMutableSt ...

  8. Objective-C NSString/NSMutableString

    创建于完成: 2018/02/05 总览: http://www.cnblogs.com/lancgg/p/8404975.html  字符串类  简介  字符码: Unicode  NSString ...

  9. 转:用法总结:NSNumber、NSString、NSDate、NSCalendarDate、NSData(待续)

    NSNumber + (NSNumber *)numberWithInt:(int)value; + (NSNumber *)numberWithDouble:(double)value; - (in ...

随机推荐

  1. (转载)session token机制

    http://blog.chinaunix.net/uid-26642709-id-3061264.html 使用session token时,必须用struts2表标签库,不能用html 通过ses ...

  2. 趣味编程:静夜思(JOOL版)

    JOOL <dependency> <groupId>org.jooq</groupId> <artifactId>jool</artifactI ...

  3. hive sql split 分隔符

    Hive字符串分割函数 split(str, regex) - Splits str around occurances that match regexTime taken: 0.769 secon ...

  4. Flexvolume

    https://kubernetes.io/docs/concepts/storage/volumes/ https://github.com/kubernetes/community/blob/ma ...

  5. Spring Cloud feign

    Spring Cloud feign使用 前言 环境准备 应用模块 应用程序 应用启动 feign特性 综上 1. 前言 我们在前一篇文章中讲了一些我使用过的一些http的框架 服务间通信之Http框 ...

  6. ubuntu下搭建testlink

    环境配置: 1. 安装mysql 教程网上找 2. 安装apache sudo apt-get install apache2 重启apache服务 sudo /etc/init.d/apache2 ...

  7. scrollLeft滚动(用animate替代)

    原: let checkedLeft1 = $('#dateBox').find('.checked').position().left let checkedLeft2 = $('#dateBox' ...

  8. catkin_make 与cmake

    http://blog.csdn.net/zyh821351004/article/details/50388429 1.  catkin_make 与cmake的关系 程序在cmake编译的流程: ...

  9. js-移动端android浏览器中input框被软键盘遮住的问题解决方案

    我遇到的问题:在一个页面里有一个弹出层之前我给我的最外层加了固定定位 用了下面的方法也不好使:没有办法我将之改为绝对定位层级变高在加上一个顶部标签通过js计算顶部高度来实现满屏遮挡: <sect ...

  10. linux 动态库 静态库 函数覆盖

    本文讨论了linux动态库  静态库中函数的覆盖问题. 测试目的: 同名函数,分别打成动态库libdync_lib.so与静态库libstatic_lib.a,并把libstatic_lib.a打到另 ...