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

去空格 whitespaceAndNewlineCharacterSet

时间:2015-05-12 18:51:10      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

本文转载至 http://blog.csdn.net/samuelltk/article/details/8994313 
1.去掉两端的空格

 

  1. [str stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]   

 

2.去掉多余的空格

 

  1. NSString *str = @"    this     is a    test    .   ";  
  2.       
  3.     NSCharacterSet *whitespaces = [NSCharacterSet whitespaceCharacterSet];  
  4.     NSPredicate *noEmptyStrings = [NSPredicate predicateWithFormat:@"SELF != ‘‘"];  
  5.       
  6.     NSArray *parts = [str componentsSeparatedByCharactersInSet:whitespaces];  
  7.     NSArray *filteredArray = [parts filteredArrayUsingPredicate:noEmptyStrings];  
  8.     str = [filteredArray componentsJoinedByString:@" "];  

 

3.去掉所有空格

 

  1. [str stringByReplacingOccurrencesOfString:@" " withString:@""]  

去空格 whitespaceAndNewlineCharacterSet

标签:

原文地址:http://www.cnblogs.com/Camier-myNiuer/p/4498132.html

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