字符串拼接和替换在开发中使用还是很频繁的,有些东西不注意却很容易进入误区,stringByReplacingOccurrencesOfString不起作用就是一个:
NSMutableString *halfUrlStr = [NSMutableString stringWithFormat:@"%@",[LCReqURLManager requestWithURL:LC_MYINVEST_AUTH_BUYHISTORY]]; [halfUrlStr stringByReplacingOccurrencesOfString:@"{packageId}" withString:proID]; NSString *requestStr = [NSString stringWithFormat:@"%@%@",kUrlPreDomain,halfUrlStr];
这样操作,最后发现并没有替换,还特地使用了NSMutableString来避嫌,这就很尴尬了,问题出在哪里呢?
//正确的方式 NSString *halfUrlStr = [NSString stringWithFormat:@"%@",[LCReqURLManager requestWithURL:LC_MYINVEST_AUTH_BUYHISTORY]]; halfUrlStr = [halfUrlStr stringByReplacingOccurrencesOfString:@"{packageId}" withString:proID]; NSString *requestStr = [NSString stringWithFormat:@"%@%@",kUrlPreDomain,halfUrlStr];
做一次赋值操作就好了,如果直接对字符串进行操作是不可以的。
很奇怪呢,对这句话的解释是这样的:
/* Replace characters in range with the specified string, returning new string.
返回一个新的字符串,这个好像也没什么影响,可以直接操作的方法也是存在的,比如stringByAppendingString,所以很奇怪啦,在使用stringByReplacingOccurrencesOfString时还是要做一次赋值操作,跳过这个坑。