Hello,
Is there a way to delete a certain character?
Totally deleting it.
I'm trying to create a Typing Game.
I tried this following codes which didn't work.
textTyped.deleteCharAt(textTyped.length()-1); <--- adds something different not totally deleting it. It adds a character. A box with question mark inside..Code:textTyped.deleteCharAt(textTyped.length()-1);
textTyped.replace(textTyped.length()-1, textTyped.length(), "");
Can you suggest a code that I can use?
Thanks

