C#
JIM110
这个作者很懒,什么都没留下…
展开
-
C#运行cmd命令
using System; 02 using System.Collections.Generic; 03 using System.Linq; 04 using System.Text; 05 using System.Threading原创 2012-02-06 08:53:00 · 1040 阅读 · 0 评论 -
C#判断字符串中是否有汉字
using System; using System.Text.RegularExpressions; private bool Check(string pendingString) { Regex reg = new Regex(@"[\u4e00-\u9fa5]");//正则表达式 i原创 2012-02-10 09:37:32 · 779 阅读 · 0 评论