gpt4 book ai didi

ios - 在文本字段中的特定字符串之前获取文本字段中的字符串

转载 作者:行者123 更新时间:2023-11-28 18:57:03 25 4
gpt4 key购买 nike

所以我的文本字段有以下文本。 @“一个大番茄是红色的。”

我想得到"is"之前的词。

当我输入时

  NSString *someString = [[textfield componentsSeparatedByString:@"is"]objectAtIndex:0];

我总是得到 “A big Tomato” 而不仅仅是 “Tomato”。在应用程序中,人们会在 "is" 之前键入内容,因此我需要始终在 "is" 之前获取字符串。如果能得到任何帮助,我将不胜感激。 *警告,

这是一个非常困难的问题。

最佳答案

试试这个,

NSString *value = @"A big Tomato is red.";
NSArray *array = [value componentsSeparatedByString:@" "];
if ([array containsObject:@"is"]) {
NSInteger index = [array indexOfObject:@"is"];
if (index != 0) {
NSString *word = [array objectAtIndex:index - 1];
NSLog(@"%@", word);
}
}

关于ios - 在文本字段中的特定字符串之前获取文本字段中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31405908/

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