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

oc 字符串 如何去掉前后空格、回车键

时间:2017-03-31 15:59:04      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:nes   char   pre   space   form   orm   bsp   acea   字符串   

if ([title hasPrefix:@" "]) {

            title = [title stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];//去掉前后空格

        }else if([title hasPrefix:@"\n"]){

            title = [title stringByTrimmingCharactersInSet:[NSCharacterSet newlineCharacterSet]];//去掉前后回车键

        }else{

    title = [title stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];//去掉前后空格+回车键

            title = [NSString stringWithFormat:@"%@",headLinesModel.title];

        }

 

oc 字符串 如何去掉前后空格、回车键

标签:nes   char   pre   space   form   orm   bsp   acea   字符串   

原文地址:http://www.cnblogs.com/lrr0618/p/6651413.html

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