字符串拼接,替换,比较 的方法

时间:2015-05-02 12:26:16   收藏:0   阅读:151

字符串的拼接

NSString *string1 = @"iphone";

string1 = [string1 stringByAppendingString:@"123"];

    

    NSLog(@"%@",string1);

字符串替换

string1 =[string1 stringByReplacingOccurrencesOfString:@"ip" withString:@"pi"];

    NSLog(@"%@",string1);

    

 字符串比较

 NSComparisonResult result = [string1 compare:@"asdffggg"]

    if (result == NSOrderedAscending) {

        NSLog(@"nihao");

    }

 

原文:http://www.cnblogs.com/as5346/p/4471650.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!