开发者

How to clean spaces in a NSString

开发者 https://www.devze.com 2023-01-06 06:38 出处:网络
I would like to reduce the number of spaces between two words in a NSString (Objective-C/iPhone dev) to only one. Do you know some method that could do that ?

I would like to reduce the number of spaces between two words in a NSString (Objective-C/iPhone dev) to only one. Do you know some method that could do that ?

Exemple :

Before cleaning : "Hi,       my   name       is              &n开发者_运维问答bsp; Tom."

After cleaning : "Hi, my name is Tom."

Thanks


Use [mystring componentsSeparatedByString:@" "] to get a NSArray of all substrings separated by a single space. Then, recombine the non-empty strings in the array to get the final string.


Take a look at http://regexkit.sourceforge.net/, it has NSString extensions with which you could do regex-based string replace.


using RegexKit, adding to RSC's answer

NSString *subjectString     = @"Hi,       my   name       is                Tom.";
NSString *regexString       = @"(\\s+)";
NSString *replacementString = @" ";

NSString *newString = [subjectString stringByMatching:regexString replace:RKReplaceAll withString:replacementString];
0

精彩评论

暂无评论...
验证码 换一张
取 消