346.C# 中的正则表达式字符类:详解与示例
bigegpt 2024-10-12 05:20 8 浏览
在 C# 中使用正则表达式时,字符类是构建模式的基础之一。字符类允许你定义一组字符,正则表达式引擎将匹配这组字符中的任何一个字符。本文将详细介绍 C# 中的正则表达式字符类,并通过多个示例展示其用法。
常用字符类
字符类通过方括号 [] 定义,可以包含单个字符、字符范围或者字符组合。以下是一些常用的字符类:
- [abc]: 匹配 'a'、'b' 或 'c'
- [^abc]: 匹配除了 'a'、'b'、'c' 之外的任意字符
- [a-z]: 匹配任意小写字母
- [A-Z]: 匹配任意大写字母
- [0-9]: 匹配任意数字
- \d: 匹配任意数字,等同于 [0-9]
- \w: 匹配任意字母、数字或下划线,等同于 [a-zA-Z0-9_]
- \s: 匹配任意空白字符,如空格、制表符或换行符
示例:匹配特定字符集 [abc]
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string pattern = "[abc]";
string input = "Fantasy and science fiction";
foreach (Match match in Regex.Matches(input, pattern))
{
Console.WriteLine(#34;Found: {match.Value}");
}
}
}
输出:
Found: a
Found: a
Found: c
Found: c
示例:匹配除特定字符之外的字符 [^abc]
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string pattern = "[^abc]";
string input = "Escape the island";
foreach (Match match in Regex.Matches(input, pattern))
{
Console.WriteLine(#34;Found: {match.Value}");
}
}
}
输出:
Found: E
Found: s
Found: p
Found: e
Found: // 空格也被匹配
Found: t
Found: h
Found: e
Found: // 空格也被匹配
Found: i
Found: s
Found: l
Found: n
Found: d
示例:匹配字母范围 [a-z] 和 [A-Z]
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string pattern = "[a-zA-Z]";
string input = "Regex101: The Tutorial";
foreach (Match match in Regex.Matches(input, pattern))
{
Console.WriteLine(#34;Found: {match.Value}");
}
}
}
输出:
Found: R
Found: e
Found: g
Found: e
Found: x
Found: T
Found: h
Found: e
Found: T
Found: u
Found: t
Found: o
Found: r
Found: i
Found: a
Found: l
示例:匹配数字 \d 和 [0-9]
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string pattern = @"\d";
string input = "The year is 2023.";
foreach (Match match in Regex.Matches(input, pattern))
{
Console.WriteLine(#34;Found: {match.Value}");
}
}
}
输出:
Found: 2
Found: 0
Found: 2
Found: 3
示例:匹配字母数字字符 \w
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string pattern = @"\w";
string input = "Password: abc123_XYZ!";
foreach (Match match in Regex.Matches(input, pattern))
{
Console.WriteLine(#34;Found: {match.Value}");
}
}
}
输出:
Found: P
Found: a
Found: s
Found: s
Found: w
Found: o
Found: r
Found: d
Found: a
Found: b
Found: c
Found: 1
Found: 2
Found: 3
Found: _
Found: X
Found: Y
Found: Z
示例:匹配空白字符 \s
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string pattern = @"\s";
string input = "Whitespace\tcharacters\ninclude spaces.";
foreach (Match match in Regex.Matches(input, pattern))
{
Console.WriteLine("Found a whitespace character.");
}
}
}
输出:
Found a whitespace character.
Found a whitespace character.
Found a whitespace character.
结论
字符类在 C# 中的正则表达式中非常有用,它们提供了一种灵活的方式来匹配特定的字符集合。通过使用字符类,你可以创建更加精确和复杂的匹配模式来处理字符串数据。掌握不同类型的字符类对于编写有效的正则表达式至关重要。以上示例应该能够帮助你开始在自己的 C# 项目中使用字符类进行模式匹配。
相关推荐
- Go语言泛型-泛型约束与实践(go1.7泛型)
-
来源:械说在Go语言中,Go泛型-泛型约束与实践部分主要探讨如何定义和使用泛型约束(Constraints),以及如何在实际开发中利用泛型进行更灵活的编程。以下是详细内容:一、什么是泛型约束?**泛型...
- golang总结(golang实战教程)
-
基础部分Go语言有哪些优势?1简单易学:语法简洁,减少了代码的冗余。高效并发:内置强大的goroutine和channel,使并发编程更加高效且易于管理。内存管理:拥有自动垃圾回收机制,减少内...
- Go 官宣:新版 Protobuf API(go pro版本)
-
原文作者:JoeTsai,DamienNeil和HerbieOng原文链接:https://blog.golang.org/a-new-go-api-for-protocol-buffer...
- Golang开发的一些注意事项(一)(golang入门项目)
-
1.channel关闭后读的问题当channel关闭之后再去读取它,虽然不会引发panic,但会直接得到零值,而且ok的值为false。packagemainimport"...
- golang 托盘菜单应用及打开系统默认浏览器
-
之前看到一个应用,用go语言编写,说是某某程序的windows图形化客户端,体验一下发现只是一个托盘,然后托盘菜单的控制面板功能直接打开本地浏览器访问程序启动的webserver网页完成gui相关功...
- golang标准库每日一库之 io/ioutil
-
一、核心函数概览函数作用描述替代方案(Go1.16+)ioutil.ReadFile(filename)一次性读取整个文件内容(返回[]byte)os.ReadFileioutil.WriteFi...
- 文件类型更改器——GoLang 中的 CLI 工具
-
我是如何为一项琐碎的工作任务创建一个简单的工具的,你也可以上周我开始玩GoLang,它是一种由Google制作的类C编译语言,非常轻量和快速,事实上它经常在Techempower的基准测...
- Go (Golang) 中的 Channels 简介(golang channel长度和容量)
-
这篇文章重点介绍Channels(通道)在Go中的工作方式,以及如何在代码中使用它们。在Go中,Channels是一种编程结构,它允许我们在代码的不同部分之间移动数据,通常来自不同的goro...
- Golang引入泛型:Go将Interface「」替换为“Any”
-
现在Go将拥有泛型:Go将Interface{}替换为“Any”,这是一个类型别名:typeany=interface{}这会引入了泛型作好准备,实际上,带有泛型的Go1.18Beta...
- 一文带你看懂Golang最新特性(golang2.0特性)
-
作者:腾讯PCG代码委员会经过十余年的迭代,Go语言逐渐成为云计算时代主流的编程语言。下到云计算基础设施,上到微服务,越来越多的流行产品使用Go语言编写。可见其影响力已经非常强大。一、Go语言发展历史...
- Go 每日一库之 java 转 go 遇到 Apollo?让 agollo 来平滑迁移
-
以下文章来源于GoOfficialBlog,作者GoOfficialBlogIntroductionagollo是Apollo的Golang客户端Apollo(阿波罗)是携程框架部门研...
- Golang使用grpc详解(golang gcc)
-
gRPC是Google开源的一种高性能、跨语言的远程过程调用(RPC)框架,它使用ProtocolBuffers作为序列化工具,支持多种编程语言,如C++,Java,Python,Go等。gR...
- Etcd服务注册与发现封装实现--golang
-
服务注册register.gopackageregisterimport("fmt""time"etcd3"github.com/cor...
- Golang:将日志以Json格式输出到Kafka
-
在上一篇文章中我实现了一个支持Debug、Info、Error等多个级别的日志库,并将日志写到了磁盘文件中,代码比较简单,适合练手。有兴趣的可以通过这个链接前往:https://github.com/...
- 如何从 PHP 过渡到 Golang?(php转golang)
-
我是PHP开发者,转Go两个月了吧,记录一下使用Golang怎么一步步开发新项目。本着有坑填坑,有错改错的宗旨,从零开始,开始学习。因为我司没有专门的Golang大牛,所以我也只能一步步自己去...
- 一周热门
- 最近发表
- 标签列表
-
- mybatiscollection (79)
- mqtt服务器 (88)
- keyerror (78)
- c#map (65)
- xftp6 (83)
- bt搜索 (75)
- c#var (76)
- xcode-select (66)
- mysql授权 (74)
- 下载测试 (70)
- linuxlink (65)
- pythonwget (67)
- androidinclude (65)
- libcrypto.so (74)
- linux安装minio (74)
- ubuntuunzip (67)
- vscode使用技巧 (83)
- secure-file-priv (67)
- vue阻止冒泡 (67)
- jquery跨域 (68)
- php写入文件 (73)
- kafkatools (66)
- mysql导出数据库 (66)
- jquery鼠标移入移出 (71)
- 取小数点后两位的函数 (73)