码迷,mamicode.com
首页 > Windows程序 > 详细

C#正则表达式基础 ^[0-9] 检测字符串的首个字符是否是数字

时间:2016-10-16 09:33:37      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

1 代码

 1 //^[0-9] 检测字符串的首个字符是否是数字
 2 
 3 using System;
 4 using System.Collections.Generic;
 5 using System.Linq;
 6 using System.Net;
 7 using System.Text;
 8 using System.Text.RegularExpressions;
 9 using System.Threading.Tasks;
10 
11 namespace ConsoleApplication7
12 {
13     class Program
14     {
15         static void Main(string[] args)
16         {
17                                       
18             string regularExpression = @"^[0-9]";
19             Regex rg = new Regex(regularExpression);
20 
21             string [] contents = { @"@@@", @"1%^&34", "a3bb33345", "a321b3" };
22             for (int i = 0; i < contents.Length; i++)
23             {
24                 if(rg.IsMatch(contents[i]))
25                 {
26                     Console.WriteLine(contents[i]+"符合正则表达式");
27                 }
28                 else
29                 {
30                     Console.WriteLine(contents[i] + "不符合正则表达式");
31 
32                 }
33             }
34 
35             Console.ReadKey();
36         }
37     }
38 }

 

2 效果

技术分享

C#正则表达式基础 ^[0-9] 检测字符串的首个字符是否是数字

标签:

原文地址:http://www.cnblogs.com/jinlingzi/p/5965890.html

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