gpt4 book ai didi

iphone - 如何在 iPhone 应用程序的 Objective-C 中组合两个字符串

转载 作者:太空狗 更新时间:2023-10-30 03:20:52 25 4
gpt4 key购买 nike

如何将“stringURL”和“stringSearch”组合在一起?

- (IBAction)search:(id)sender;{
stringURL = @"http://www.websitehere.com/index.php?s=";
stringSearch = search.text;
/* Something such as:
stringURL_ = stringURL + stringSearch */
[web loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:stringURL_]]];
}

最佳答案

菲利普举了一个很好的例子。

您也可以使用普通的 stringWithFormat: 方法。

NSString *combined = [NSString stringWithFormat:@"%@%@", stringURL, stringSearch];

通过这种方式,您可以通过在字符串之间放置一些东西来进一步操纵字符串,例如:

NSString *combined = [NSString stringWithFormat:@"%@/someMethod.php?%@", stringURL, stringSearch];

关于iphone - 如何在 iPhone 应用程序的 Objective-C 中组合两个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6948178/

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