Is there any way to delete the last character from the console, i.e.
Console.WriteLine("List: apple,pear,");
// Somehow delete the last ',' character from the console.
Console.WriteLine(".");
// Now the console contains "List: apple,pear."
Sure, I could create a string first then print that to the console, but I'm just curious to see if I can delete characters directly from the console.
if you want to delete only one char you can use:
Console.SetCursorPosition(Console.CursorLeft - 1, Console.CursorTop);
andConsole.Write()
again.if you want to delete more than one char, like an automation, you can store the current
Console.CursorLeft
in a variable and use that value inConsole.SetCursorPosition(--variablename, Console.CursorTop)
in a loop to delete many chars you want!You could clear the console and then write the new output.
This will do the trick if you use
Write
instead ofWriteLine
.But you actually have lots of control over the console. You can write to any location you wish. Just use the
Console.SetCursorPosition(int, int)
method.To delete a character on the console use
This will properly delete the character before the cursor and move all following characters back. Using the statement below you will only replace the character before the cursor by a white space and not actually remove it.
My proposed solution should work in some other programming languages as well, since it is using ANSI escape sequences.
Console.Write("\b \b");
is probably what you want. It deletes the last char and moves the caret back.The
\b
backspace escape character only moves the caret back. It doesnt'remove the last char. SoConsole.Write("\b");
only moves the caret one back, leaving the last character still visible.Console.Write("\b \b");
however, first moves the caret back, then writes a whitespace character that overwrites the last char and moves the caret forward again. So we write a second\b
to move the caret back again. Now we have done what the backspace button normally does.The above solutions works great unless you're iterating through a for or foreach loop. In that situation you must use a different approach, like
It does, however work well also for a string join.
Examples: