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(); } } }
查看全文
相关阅读:
根据修改时间来获取文件
juery学习总结——例子
juery实现贪吃蛇的游戏
juery学习总结(二)——juery操作页面元素
juery学习总结(一)——juery选择器
装饰器
58同城招聘_爬虫解码ncs--#&X
断点调试_PDB
Nginx入门
Windows环境下nginx的安装
原文地址:https://www.cnblogs.com/johnpher/p/2570611.html
最新文章
软件工程作业3
软件工程作业2
软件工程作业1
软件构造之并发编程1
不错的网址大集合
python学习01--安装环境与基本学习
Oracle学习笔记01:oracle所需知识点以及体系结构
hibernate持久化对象三种状态及其转换
activeMq与spring整合
省市区三级联动jquery插件 city-picker与百度地图API联动小案例
热门文章
工作期间总结的JavaScript数组和字符串常用方法
ajax全接触
正则基础知识
react-router的基础知识
数组的有关属性和方法
js 中的 exec( )方法
Canvas--2
canvas ---1
理解鼠标滚动事件
百度首页
Copyright © 2011-2022 走看看