oc 字符串 如何去掉前后空格回车键
Posted 偶阵雨ss33
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oc 字符串 如何去掉前后空格回车键相关的知识,希望对你有一定的参考价值。
if ([title hasPrefix:@" "]) {
title = [title stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];//去掉前后空格
}else if([title hasPrefix:@"\n"]){
title = [title stringByTrimmingCharactersInSet:[NSCharacterSet newlineCharacterSet]];//去掉前后回车键
}else{
title = [title stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];//去掉前后空格+回车键
title = [NSString stringWithFormat:@"%@",headLinesModel.title];
}
以上是关于oc 字符串 如何去掉前后空格回车键的主要内容,如果未能解决你的问题,请参考以下文章