标签: r console carriage-return
cat("hello\n")将光标放在R控制台(Windows)中>之后的正确位置。如,
cat("hello\n")
>
> cat("hello\n") hello > |
但是,cat("\rhello\n")将光标向右移动一个大空间。
cat("\rhello\n")
> cat("\rhello\n") hello > |
我注意到在几个R软件包中,在调用了几个函数后,光标位置在控制台周围移动了。也许这就是为什么?这是以某种方式预期的吗?