摘要:1.替换字符串中的某些字符。。。str.Replace("要替换的字符","用什么来替换");2.c#如何实现删除TextBox控件中当前光标处前一字符if (textBox1.SelectionStart > 0) { textBox1.Text = textBox1.Text.Remove(textBox1.SelectionStart - 1, 1); }
阅读全文
posted @ 2012-07-13 20:04