首页 > 代码库 > ios 去除字符串首尾空格、换行

ios 去除字符串首尾空格、换行

去除首尾空格:

NSString *content = [textView.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];

去除首尾空格和换行:

NSString *content = [textView.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];


ios 去除字符串首尾空格、换行