2024-10-12 10:19:28
2024-10-12 11:10:01
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text.Substring(textBox1.Text.LastIndexOf("//")+2);
textBox1.Text = textBox1.Text.Substring(0, textBox1.Text.IndexOf("/"));
}
试试我的两行搞定,纯oop的方法搞定!不过要多用一个IndexOf()的方法
2024-10-12 09:27:06