如何在 ObjectiveC 中获取一个字符串和另一个字符串?

发布于 2024-12-06 17:22:17 字数 190 浏览 0 评论 0原文

例如,文本为:

my name is angie merkel and Im stupid!

我想从字符串中获取angie merkel

我该怎么做?我的头要爆炸了...我无法修剪这个字符串,因为它是一个变量
(来自 ChatBot 用户的文本)

For example, the text is:

my name is angie merkel and Im stupid!

I'd like to get the angie merkel from the string.

How can i do this? My head is going to explode... i can't trim this string because it's a variable
(text from the user for a ChatBot)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假面具 2024-12-13 17:22:17

如果字符串的格式始终为“我的名字是,我很愚蠢!”,您可以执行以下操作:

NSString *name = [[startingString stringByReplacingOccurrencesOfString:@"my name is " 
                                                            withString:@""]
                  stringByReplacingOccurrencesOfString:@" and Im stupid!" 
                                            withString:@""];

If the string always has the format `my name is and Im stupid!', you can do the following:

NSString *name = [[startingString stringByReplacingOccurrencesOfString:@"my name is " 
                                                            withString:@""]
                  stringByReplacingOccurrencesOfString:@" and Im stupid!" 
                                            withString:@""];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文