做的时候
write("Hello", file = "Test.txt")
并在文本编辑器中打开我的文件Test.txt
,它包含两行(其中第二行为空)。如何禁止write()
插入结束换行符命令?
答案 0 :(得分:1)
write
是cat
的包装器。如果我们像这样使用cat
,我们得到了相同的结果:
cat("Hello",file="Test.txt",sep="\n")
如果我们使用没有sep参数的cat,我们有没有新行的文本:
cat("Hello",file="Test.txt")
另一种写作方式是使用cat
+ sink
:
sink("Test.txt")
cat("Hello")
sink()
对于压制write()
我找不到方法。