首页 > 其他 > 详细

判断是否是中文、英文字符串

时间:2019-03-29 23:42:07      阅读:227      评论:0      收藏:0      [点我收藏+]
技术分享图片
 1 using System;
 2 
 3 public class Example
 4 {
 5    public static void Main()
 6    {
 7         bool isChinese = false;
 8         string CString = "a.有能力的;出色的";
 9         for (int i = 0; i < CString.Length; i++)
10         {
11             if (Convert.ToInt32(Convert.ToChar(CString.Substring(i, 1)))< Convert.ToInt32(Convert.ToChar(128)))
12             {
13                 isChinese = false;
14             }
15             else
16             {
17                 isChinese = true;
18             }
19         }
20         Console.WriteLine(isChinese);
21    }
22 }
23    
判断是否是中文字符串
技术分享图片
 1 using System;
 2 
 3 public class Example
 4 {
 5    public static void Main()
 6    {
 7         string CString = "ability";
 8         //    正则表达式
 9         System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(@"^[A-Za-z]+$");
10         //    IsMatch
11         Console.WriteLine(reg.IsMatch(CString));
12    }
13 }
14    
判断是否是英文字符串

 判断是否是中文

isChinese = true;
break;

 

判断是否是中文、英文字符串

原文:https://www.cnblogs.com/GoldenEllipsis/p/10624749.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!