At 22:42 07.03.01 +0900, Tammo Freese wrote: >At 22:35 07.03.01 +0900, you wrote: >>I'd like to delete one character of the variable string, but >>delete! would delete this character in the whole string an >>not only at one position. Does anyone how it works. The shorter >>the expression the better. > >to delete char at pos i from string s: >s[i] = "" OK, even shorter: s[i]="" :-) ...and i must be between 0 and s.length - 1. - Tammo Freese freese / acm.org