如何使用RegexKitLite删除任意两个单词之间的空格/空格?

时间:2010-12-23 00:05:35

标签: iphone objective-c c regex xcode

我想删除任意两个单词之间的空格并添加我想要的任何内容。例如,我将有一个字符串,其中包含两个单词,两者之间有空格。我希望能够移除空间并用我声明的内容替换空间。此外,这需要用objective-c或c。

编写
NSString *string = @"Word Word2";

我需要一个表达式才能做到这一点,我似乎无法掌握RegexKitLite。任何帮助,将不胜感激。感谢

1 个答案:

答案 0 :(得分:1)

使用NSString的{​​{3}}方法:

NSString *spaceReplacement = @"whatever";
NSString *replaced = [string stringByReplacingOccurrencesOfString:@" " withString:spaceReplacement];