Swift 中的转义字符

escape characters in Swift

我特别想知道如何在 Swift 中转义换行符,但通用转义字符也很棒。

在 Python 你可以这样做:

print("Dear grandma, \nHow are you?")

如何在 Swift 中做到这一点?

(我是 Stack Overflow 的新手,所以任何指针或编辑都将很容易被排除!:D)

作为 \n 的换行符也适用于 Swift 字符串文字。

查看文档:Special Unicode Characters in String Literals

这是一个用逗号替换字符串中的 unicode 字符的示例(让您了解使用转义的 unicode)。

address = address.stringByReplacingOccurrencesOfString("\u{0000200e}", withString: ",", options: nil, range: nil)