첫 글자 제거 text = text.Substring(1, text.Length - 1); 마지막 글자 제거 text = text.Substring(0, text.Length - 1);