Swift 包含特殊字符的字符串

Swift String including Special Characters

我让用户在 NSTextView 中输入多个字符串。

var textViewString = textView.textStorage?.string

打印字符串(print(textViewString)),我得到一个多行字符串,例如:

hello this is line 1 

and this is line 2

我想要一个包含换行符的 swift 字符串表示。例如,我希望 print(textStringFlat) 打印:

hello this is line 1\n\nand this is line 2

我需要做什么才能textViewString暴露特殊字符?

如果您只想用文字字符 \n 替换换行符,请使用:

let escapedText = someText.replacingOccurrences(of: "\n", with: "\n")