2011-04-04 37 views

回答

7

string text = TextBox.Text.Replace("-", "");

string text = TextBox.Text.TrimStart('-');

string text = TextBox.Text.Remove(0, 1);

+0

其不工作 – pooja 2011-04-04 10:20:36

+0

感谢它的作品.. – pooja 2011-04-04 10:24:16