首页 > 其他 > 详细

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

时间:2015-05-02 12:26:16      阅读:150      评论:0      收藏:0      [点我收藏+]

字符串的拼接

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)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!