gpt4 book ai didi

ios - 如何获取大括号之间的子字符串?

转载 作者:可可西里 更新时间:2023-11-01 04:05:05 25 4
gpt4 key购买 nike

我有一个这样的字符串。

NSString *myString = @"{53} balloons";

如何获取子字符串 53

最佳答案

NSString *myString = @"{53} balloons";
NSRange start = [myString rangeOfString:@"{"];
NSRange end = [myString rangeOfString:@"}"];
if (start.location != NSNotFound && end.location != NSNotFound && end.location > start.location) {
NSString *betweenBraces = [myString substringWithRange:NSMakeRange(start.location+1, end.location-(start.location+1))];
}

编辑:添加了范围检查,感谢 Keab42 - 好点。

关于ios - 如何获取大括号之间的子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14959157/

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