R 转义字符


转义字符

要在字符串中插入非法字符,必须使用转义字符。

转义字符是反斜杠\后跟您要插入的字符。

非法字符的一个示例是由双引号括起来的字符串内的双引号:

示例

str <- "We are the so-called "Vikings", from the north."

str

结果:

Error: unexpected symbol in "str <- "We are the so-called "Vikings"
亲自试一试 »

要解决此问题,请使用转义字符\":

示例

转义字符允许您在通常不允许的情况下使用双引号:

str <- "We are the so-called \"Vikings\", from the north."

str
cat(str)
亲自试一试 »

请注意,自动打印斯特变量将在输出中打印反斜杠。您可以使用cat()函数打印它,不带反斜杠。

R 中的其他转义字符:

Code Result
\\ Backslash
\n New Line
\r Carriage Return
\t Tab
\b Backspace