gpt4 book ai didi

iphone - 获取textview的第一句话

转载 作者:行者123 更新时间:2023-11-28 18:04:14 27 4
gpt4 key购买 nike

我正在尝试获取 TextView 的第一句话。我有以下代码,但出现越界错误。谢谢。或者有什么方法不是很复杂。

   -(IBAction)next:(id)sender
{
NSRange ran = [[tv.text substringFromIndex:lastLocation] rangeOfString:@". "];
if(ran.location != NSNotFound)
{
NSString * getRidOfFirstHalfString = [[tv.text substringFromIndex:lastLocation] substringToIndex:ran.location];
NSLog(@"%@",getRidOfFirstHalfString);
lastLocation+=getRidOfFirstHalfString.length;
}

最佳答案

怎么样:

NSString *finalString = [[tv.text componentsSeparatedByString:@"."] objectAtIndex:0] // Get the 1st part (left part) of the separated string

浏览 textview 的文本并将文本分成单独的组件,您可以通过调用 tv.text 上的 componentsSeperatedByString 找到句点。您需要 first 句子,这将是数组中的第 0 个对象。

关于iphone - 获取textview的第一句话,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11641850/

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