gpt4 book ai didi

iphone - 如何将 NSString 插入 NSMutableString?

转载 作者:太空狗 更新时间:2023-10-30 03:58:21 24 4
gpt4 key购买 nike

我有一个 NSMutableString,我需要在两个地方插入另一个 NSString。我的 NSMutableString 是

NSMutableString *webServiceLinkWithResponses = [[NSMutableString alloc] initWithString:@"http://lmsstaging.2xprime.com/services/ParticipantService.cfc?method=setVideoExamResults&student_id=10082&course_id=VRT_TRA&lesson=904&examtype=r&question_num=&ansValue="];

我需要在“question_num=”之后插入一个字符串(一),在“ansValue=”之后插入另一个字符串(一),所以我的最终字符串应该是这样的

http://lmsstaging.com/services/ParticipantService.cfc?method=setVideoExamResults&student_id=10082&course_id=VRT_TRA&lesson=904&examtype=r&question_num=One&ansValue=One

对此有什么建议吗?

最佳答案

以下将创建一个未保留的 NSMutableString:

NSMutableString *webServiceLinkWithResponses = [NSMutableString stringWithFormat:@"http://lmsstaging.2xprime.com/services/ParticipantService.cfc?method=setVideoExamResults&student_id=10082&course_id=VRT_TRA&lesson=904&examtype=r&question_num=%@&ansValue=%@", stringOne, stringTwo];

如果您需要保留它,只需使用 [[NSMutableString alloc] initWithFormat:@"..."]:

NSMutableString *webServiceLinkWithResponses = [[NSMutableString alloc] initWithFormat:@"http://lmsstaging.2xprime.com/services/ParticipantService.cfc?method=setVideoExamResults&student_id=10082&course_id=VRT_TRA&lesson=904&examtype=r&question_num=%@&ansValue=%@", stringOne, stringTwo];

你真的需要它是一个可变字符串吗,你打算在它创建后更改它吗?如果不是简单地将 NSMutableString 更改为 NSString,例如(这会返回一个自动释放的 NSString,如果需要保留,请使用 [NSString alloc] initWithFormat:]):

NSString *webServiceLinkWithResponses = [NSString stringWithFormat:@"http://lmsstaging.2xprime.com/services/ParticipantService.cfc?method=setVideoExamResults&student_id=10082&course_id=VRT_TRA&lesson=904&examtype=r&question_num=%@&ansValue=%@", stringOne, stringTwo];

关于iphone - 如何将 NSString 插入 NSMutableString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10139174/

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