winform中如何获得textbox的部分字符例如textbox显示“aaaabb”,我想获得其中的“bb” [解决办法]?
string str = "aaaabb"; Console.WriteLine(str.Substring(4, 2));//输出bb