swift在String上有一个trim方法吗?

前端之家收集整理的这篇文章主要介绍了swift在String上有一个trim方法吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
swift在String上有一个trim方法吗?例如:
  1. let result = " abc ".trim()
  2. // result == "abc"
这里是如何从字符串的开始和结束删除所有的空格。

(使用Swift 2.0测试的示例)。

  1. let myString = " \t\t Let's trim all the whitespace \n \t \n "
  2. let trimmedString = myString.stringByTrimmingCharactersInSet(
  3. NSCharacterSet.whitespaceAndNewlineCharacterSet()
  4. )
  5. // Returns "Let's trim all the whitespace"

(使用Swift 3.0测试的示例)

  1. let myString = " \t\t Let's trim all the whitespace \n \t \n "
  2. let trimmedString = myString.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
  3. // Returns "Let's trim all the whitespace"

希望这可以帮助。

猜你在找的Swift相关文章