I've been doing lots of work with Arrays and Lists today and ran into the problem of trying to remove characters from a string (hit backspace to make string remove last character). I'm thinking maybe I could do something along the lines of "someString.toCharArray()", remove the last data object, then convert it back somehow. Is this along the right line of thinking for how to do this?

