NSString *str = "/r/n你好吗";
str = [str stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]; //去除掉首尾的空白字符和换行字符
str = [str stringByReplacingOccurrencesOfString:@"\r" withString:@""];
str = [str stringByReplacingOccurrencesOfString:@"\n" withString:@""];
iOS去除字符串中的换行符
Posted tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS去除字符串中的换行符相关的知识,希望对你有一定的参考价值。
以上是关于iOS去除字符串中的换行符的主要内容,如果未能解决你的问题,请参考以下文章
iOS NSDictionary转JSON字符串(去除换行和空格)