码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-03-29 23:43:32      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:文字   cst   amp   hide   regex   图片   toc   code   expr   

技术图片
 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;

 

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

标签:文字   cst   amp   hide   regex   图片   toc   code   expr   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!