gpt4 book ai didi

ios - 计算 NSString 中 2 个单词之间的所有字符

转载 作者:行者123 更新时间:2023-11-28 19:58:58 26 4
gpt4 key购买 nike

是否可以计算 NSString 中两个单词之间的字符数?这是字符串

NSString *myString = [NSString stringWithFormat:@"This is a test string."];

我想统计单词“This”和单词“string”之间的字符数。

这可能吗

最佳答案

你可能会这样做:

NSString *myString = [NSString stringWithFormat:@"This is a test string."];

NSInteger charCountBetween = -1;
NSRange thisRange = [myString rangeOfString:@"This"];
NSRange stringRange = [myString rangeOfString:@"string"];
if( thisRange.location != NSNotFound && stringRange.location != NSNotFound )
{
charCountBetween = fabs(thisRange.location - stringRange.location);
if( thisRange.location > stringRange.location )
{
charCountBetween -= stringRange.length;
}
else
{
charCountBetween -= thisRange.length;
}
}

关于ios - 计算 NSString 中 2 个单词之间的所有字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25013803/

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