?能说明白点吗? 几个不同的数字都是什么呢? 有没有什么规律?数字中间有其他字符间隔吗?如果没有那么下面的代码可以实现.Text2.Text = Mid(Text1.Text, 1, 1)Text3.Text = Mid(Text1.Text, 2, 1)Text4.Text = Mid(Text1.Text, 3, 1)Mid 函数用来从指定的字符串中截取字符.Mid("asdf",1,2)'从字符串 "asdf" 的第1个字开始截取两个字符.结果为 as