参考手册
参考手册
实例 R 语言 使用转义字符以字符串形式输出单词
源代码
运行代码
str <- "We are the so-called \"Vikings\", from the north." str cat(str)
x
str
<-
"We are the so-called
\"
Vikings
\"
, from the north."
str
cat
(
str
)
输出结果
[1] "We are the so-called \"Vikings\", from the north."
We are the so-called "Vikings", from the north.