zoukankan
html css js c++ java
在C#中使用正则表达式
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; namespace Regular_Expression_1 { class Program { static void Main(string[] args) { Console.WriteLine(@"This will find a match for the regular expresson '[A-Z]\d'."); Console.WriteLine("Enter a test string now."); Regex myRegex = new Regex(@"[A-Z]\d", RegexOptions.IgnoreCase); string inputString = Console.ReadLine(); Match myMatch = myRegex.Match(inputString); Console.WriteLine("You entered the string '" + myMatch.ToString() + "'was found in the string you entered."); Console.ReadLine(); } } }
查看全文
相关阅读:
SQL Server中游标的使用
SQL Server之内连接 左连接 右连接 全连接 交叉连接
C#后台格式化JSON字符串显示
使用反射、特性简化代码
JQuery方法扩展
.NET强制进行即时垃圾回收
.NET中的Queue和Stack
如何解决firefox下window.event的问题
【JS对象、JSON字符串】之间的相互转换
Javascript模块化编程(一):模块的写法
原文地址:https://www.cnblogs.com/johnpher/p/2570611.html
最新文章
MySQL FailOver(官方自带,free)
MySQL5.5升级到5.6
mysql replication错误常见处理
关于提示replication性能
MySQL GTID复制
MySQLDump在使用之前一定要想到的事情 [转载]
Myisamchk使用
mysql数据误删除(drop)的恢复. (ext3grep, extundelete)
mysql 基于LVM快照的备份
java多线程编程的概述以及案例详解
热门文章
JNI
AndroidStudio2.2 cMake方式创建jni工程
android app cpu占用CPU过大的案例
成功者根本没有告诉你故事的全部 (转文)
关于获取安卓设备的mac地址
关于 屏幕适配的具体做法
读书笔记:关于android性能优化
关于工作中遇到的HTTPS 和 SSL
Android读书笔记3:控件架构以及自定义控件
C#使用ICSharpCode.SharpZipLib.dll压缩多个文件
Copyright © 2011-2022 走看看