在程序中獲得字符串中數字或字母的長度時,可以先使用CharEnumerator對象的MoveNext方法循環訪問字符串中的每個字符,並將字符用System.Text.Encoding類中ASCII編碼方式的GetBytes方法進行編碼,然後判斷經過編碼之後的字符的ASCII碼值是否介於指定的值之間,如果是,則將其添加到一個數組中,最後獲得該數組的項數即可。獲得字符串中數字或字母長度的關鍵代碼如下:
ArrayList itemList = new ArrayList();
CharEnumerator CEnumerator = textBox1.Text.GetEnumerator();
while (CEnumerator.MoveNext())
{
byte[] array = new byte[1];
array = System.Text.Encoding.ASCII.GetBytes(CEnumerator.Current.ToString());
int asciicode = (short)(array[0]);
if ((asciicode >= 48 && asciicode <= 57) || (asciicode >= 65 && asciicode <= 90) || (asciicode >= 97 && asciicode <= 122))
{
itemList.Add(CEnumerator.Current.ToString());
}
textBox2.Text = itemList.Count.ToString();
}