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

C#正则表达式基础 . 一个字符 除了回车,其他的都符合

时间:2016-10-15 17:00:18      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

1、代码

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Net;
 5 using System.Text;
 6 using System.Text.RegularExpressions;
 7 using System.Threading.Tasks;
 8 
 9 namespace ConsoleApplication7
10 {
11     class Program
12     {
13         static void Main(string[] args)
14         {
15                                      //一个字符.除了回车,其他的都符合
16             string regularExpression = ".";
17             Regex rg = new Regex(regularExpression);
18 
19             string contents = "0123456789abcdefg";
20             for (int i = 0; i < contents.Length; i++)
21             {
22                 if(rg.IsMatch(contents[i].ToString()))
23                 {
24                     Console.WriteLine(contents[i]+"符合正则表达式");
25                 }
26                 else
27                 {
28                     Console.WriteLine(contents[i] + "不符合正则表达式");
29 
30                 }
31             }
32 
33             string test = "\n";
34             if (rg.IsMatch(test))
35             {
36                 Console.WriteLine( "回车符合正则表达式");
37             }
38             else
39             {
40                 Console.WriteLine( "回车不符合正则表达式");
41 
42             }
43 
44             Console.ReadKey();
45         }
46     }
47 }

 

 

 

2 效果

技术分享

C#正则表达式基础 . 一个字符 除了回车,其他的都符合

标签:

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

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