swift在String上是否有trim方法?

swift在String上是否有trim方法?例如:

let result = " abc ".trim()

// result == "abc"

回答:

这是从的开头和结尾删除所有空白的方法String

(示例使用 进行了测试。)

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"

(示例使用 进行了测试。)

let myString = "  \t\t  Let's trim all the whitespace  \n \t  \n  "

let trimmedString = myString.trimmingCharacters(in: .whitespacesAndNewlines)

// Returns "Let's trim all the whitespace"

希望这可以帮助。

以上是 swift在String上是否有trim方法? 的全部内容, 来源链接: utcz.com/qa/406845.html

回到顶部