gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 16:03:02 29 4
gpt4 key购买 nike

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

NSString *string = @"Word Word2";

我需要一个表达式来执行此操作,但我似乎无法掌握 RegexKitLite。任何帮助,将不胜感激。谢谢

最佳答案

使用NSStringstringByReplacingOccurrencesOfString:withString:方法:

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

关于iphone - 如何使用 RegexKitLite 删除任意两个单词之间的空格/空白?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4514853/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com