📜  转义字符反应 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:30.856000             🧑  作者: Mango

代码示例1
Use the same escape as Javascript (ECMAScript)
' single quote
" double quote
\ backslash
\n new line
\r carriage return
\t tab
\b backspace
\f form feed

By rjdkolb from https://stackoverflow.com/a/48484404