美文网首页
iOS - 去除字符串里面所有空格

iOS - 去除字符串里面所有空格

作者: biubiuboom | 来源:发表于2020-05-12 16:22 被阅读0次
    ///去除空格
    - (NSString *)removeSpaceAndNewline:(NSString *)str{
       
        NSString *temp = [str stringByReplacingOccurrencesOfString:@" " withString:@""];
        temp = [temp stringByReplacingOccurrencesOfString:@"\r" withString:@""];
        temp = [temp stringByReplacingOccurrencesOfString:@"\n" withString:@""];
        return temp;
    }
    

    相关文章

      网友评论

          本文标题:iOS - 去除字符串里面所有空格

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