swift在String上有一个trim方法吗?例如:
let result = " abc ".trim() // result == "abc"
这里是如何从字符串的开始和结束删除所有的空格。
原文链接:https://www.f2er.com/swift/321831.html(使用Swift 2.0测试的示例)。
let myString = " \t\t Let's trim all the whitespace \n \t \n " let trimmedString = myString.stringByTrimmingCharactersInSet( NSCharacterSet.whitespaceAndNewlineCharacterSet() ) // Returns "Let's trim all the whitespace"
(使用Swift 3.0测试的示例)
let myString = " \t\t Let's trim all the whitespace \n \t \n " let trimmedString = myString.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines) // Returns "Let's trim all the whitespace"
希望这可以帮助。