摘要: /// <summary> /// 判断输入的字符串全是字符不包括数字,不是返回false,否则返回true 20100728 /// </summary> /// <param name="text"></param> /// <returns></returns> public static bool IsChar(string text) //http://wenwen.soso.com/z/q120543222.htm { int count = 0; for (int i = 0; i < 阅读全文
posted @ 2012-12-16 20:59 心语2012 阅读(197) 评论(0) 推荐(0) 编辑