今天看项目看他如下代码
NSString *commentContent = [content stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
stringByTrimmingCharactersInSet作用:去掉特殊字符
whitespaceCharacterSet 去掉收尾的空格(注:只能去掉收尾的空格)
今天看项目看他如下代码
NSString *commentContent = [content stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
stringByTrimmingCharactersInSet作用:去掉特殊字符
whitespaceCharacterSet 去掉收尾的空格(注:只能去掉收尾的空格)