📜  c# 在文本框中搜索指定的字符串 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:55.295000             🧑  作者: Mango

代码示例1
int pos = textbox1.Text.IndexOf("YYMM");
if(pos != -1)
{ 
    textbox1.SelectionStart = pos;
    textbox1.SelectionLength = 4;
    // MessageBox("Error");
}