2011-04-04 27 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

相關問題