如何在R中使用换行符?
myStringVariable <- "Very Nice ! I like";
myStringVariabel <- paste(myStringVariable, "\n", sep="");
上面的代码 不起作用
附注:在谷歌搜索这类东西时,存在很大的挑战,因为查询“ R新行字符”似乎确实使Google感到困惑。我真的希望R有个不同的名字。
如何在R中使用换行符?
myStringVariable <- "Very Nice ! I like";
myStringVariabel <- paste(myStringVariable, "\n", sep="");
上面的代码 不起作用
附注:在谷歌搜索这类东西时,存在很大的挑战,因为查询“ R新行字符”似乎确实使Google感到困惑。我真的希望R有个不同的名字。
Answers:
R的性质意味着,只要将其打印出来,就不会在字符向量中出现换行符。
> print("hello\nworld\n")
[1] "hello\nworld\n"
也就是说,新行是字符串中,他们只是没有得到打印为新的生产线。但是,如果要打印它们,则可以使用其他功能,例如cat:
> cat("hello\nworld\n")
hello
world