本文介绍了如何删除字符串中的所有空格和\ n \ r?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Swift中删除字符串中所有空格,\n\r的最有效方法是什么?

What is the most efficient way to remove all the spaces, \n and \r in a String in Swift?

我尝试过:

for character in string.characters {

}

但这有点不方便.

推荐答案

迅速4:

let text = "This \n is a st\tri\rng"
let test = String(text.filter { !" \n\t\r".contains($0) })

输出:

print(test) // Thisisastring

虽然Fahri的回答很好,但我希望它是纯Swift的;)

While Fahri's answer is nice, I prefer it to be pure Swift ;)

这篇关于如何删除字符串中的所有空格和\ n \ r?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 21:59