我如何用X代替+空格
我正在构build一个应用程序,有很多从MySQL服务器调用的URL。
我需要做的是我的应用程序是采取textfield文本,并发送(我已经知道该怎么做),但我需要用+(加号)replace空格,
尝试使用string方法- (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target withString:(NSString *)replacement;
str=[str stringByReplacingOccurrencesOfString:@" " withString:@"+"];