作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个 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=”之后插入另一个字符串(一),所以我的最终字符串应该是这样的
对此有什么建议吗?
最佳答案
以下将创建一个未保留的 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/
我是一名优秀的程序员,十分优秀!