Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查文本框中的文本。
例如。我的文本框包含:31283712031720
我想先检查数字 31,然后是 28,然后是 37,等等。就像一点点一样。
谢谢。
只需获取文本框的文本,然后循环遍历两个字符。
例如
String text = <get text of textbox here> for (int i = 0; i < text.Length; i += 2) { string bit = text.Substring(i, 2); }
string fristNumber = MyTexBox.Text[0] + MyTextBox.Text[1];
如果你愿意,你可以把它放在一个循环中