本文介绍了如何在C中删除打印在控制台上的当前行?我在一个linux系统上工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在C中删除打印在控制台上的当前行?我正在使用linux系统
How can I erase the current line printed on the console in C? I am working on a linux system
example -
example -
printf("hello");
printf("bye");
我想在同一行打印你的名字。
I want to print bye on the same line in place of hello.
bye
推荐答案
您可以使用。大多数终端,包括xterm,都是VT100感知。对于擦除行,这是 ^ [[2K
。在C中,这给出:
You can use VT100 escape codes. Most terminals, including xterm, are VT100 aware. For erasing a line, this is ^[[2K
. In C this gives:
printf("%c[2K", 27);
这篇关于如何在C中删除打印在控制台上的当前行?我在一个linux系统上工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!