美文网首页
连续换行符处理

连续换行符处理

作者: ElaineYin | 来源:发表于2019-04-22 17:39 被阅读0次
/// 连续换行符处理
    NSRegularExpression *regular = [[NSRegularExpression alloc] initWithPattern:@"\n{1,}" options:NSRegularExpressionCaseInsensitive error:nil];
NSString *content = @"空山不见人,




但闻人语响。
返景入深林,
复照青苔上。";
    content = [regular stringByReplacingMatchesInString:content options:NSRegularExpressionCaseInsensitive range:NSMakeRange(0, [content length]) withTemplate:@"\n"];
/// 处理完成

相关文章

网友评论

      本文标题:连续换行符处理

      本文链接:https://www.haomeiwen.com/subject/neeugqtx.html