📅  最后修改于: 2022-03-11 14:48:55.295000             🧑  作者: Mango
int pos = textbox1.Text.IndexOf("YYMM");
if(pos != -1)
{
textbox1.SelectionStart = pos;
textbox1.SelectionLength = 4;
// MessageBox("Error");
}