I think what you are asking for is impossible. In Java, strings are immutable, i.e., you cannot access the array of characters and edit them. You must create a new String and reflect the changes you...