目录
- 1. 邮箱地址验证
- 2. URL 验证
- 3. 电话号码验证(简单示例)
- 4. 身份证号码验证(中国)
- 5. IP 地址验证
- 6. 空白行检测
- 7. 十六编程客栈进制颜色代码验证
- 8. 邮政编码验证(中国)
- 9. 只包含字母和数字的字符串验证
- 10. 匹配 html 标签
- 使用正则表达式示例
- datetime
- 属性
- 构造函数
- 方法
- 静态方法
- 操作符
- 格式化方法
在 C# 中,正则表达式(Regular Expressions)是一种强大的文本处理工具,用于执行各种字符串搜索、替换和验证任务。以下是一些常用的正则表达式示例及其用途:
1. 邮箱地址验证
string emailPattern = @"^[^@\s]+@[^@\s]+\.[^@\s]+$";
2. URL 验证
string urlPattern = @"^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$";
3. 电话号码验证(简单示例)
string phonePattern = @"^\+?(\d{1,3})?[-. ]?\(?(\d{3})\)?[-. ]?(\d{3})[-. ]?(\d{4})$";
4. 身份证号码验证(中国)
string idCardPattern = @"^[1-9]\d{5}(18|19|20)\d{2}(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d{3}[Xx0-9]$";
5. IP 地址验证
string ipPattern = @"^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$";
6. 空白行检测
string blankLinePattern = @"^\s*$";
7. 十六进制颜色代码验证
string hexColorPattern = @"^#(?:[0-9a-fA-F]{3}){1,2}$";
8. 邮政编码验证(中国)
string postalCodePattern = @"^[0-9]{6}$";
9. 只包含字母和数字的字符串验证
string alphanumericPattern = @"^[a-zA-Z0-9]+$";
10. 匹配 HTML 标签
string htmlTagPattern = @"<(.*)>.*<\/\1>";
使用正则表达式示例
以下是一个使用正则表达式检查编程客栈字符串是否为有效电子邮件地址的示例:
using System; using System.Text.RegularExpressions; class Program { static void Main() { string email = "example@example.com"; bool isValid = Regex.IsMatch(email, @"^[^@\s]+@[^@\s]+\.[^@\s]+$"); Console.WriteLine(isValid ? "Valid email." : "Invalid email."); } }
datetime
DateTime
类在 C# 中提供了大量的 API 来处理日期和时间。以下是一些常用的 DateTime
API:
属性
Now
: 获取当前本地日期和时间。UtcNow
: 获取协调世界时(UTC)的当前日期和时间。Today
: 获取今天的日期,时间部分为零点。
构造函数
DateTime()
: 创建一个DateTime
对象,默认为当前时间。DateTime(long ticks)
: 从自 0001 年 1 月 1 日以来的滴答数创建DateTime
对象。DateTime(int year, int month, int day)
: 创建指定年、月、日的DateTime
对象,时间部分默认为零点。DateTime(int year, int month, day, int hour, int minute)
: 创建指定年、月、日、时、分的DateTime
对象。
方法
Add(TimeSpan)
: 返回一个新的DateTime
对象,它是将指定的TimeSpan
值添加到当前对象的时间。AddDays(double)
: 返回一个新的DateTime
对象,它是将指定天数添加到当前对象的时间。AddHours(double)
: 返回一个新的DateTime
对象,它是将指定小时数添加到当前对象的时间。AddMilliseconds(double)
: 返回一个新的DateTime
对象,它是将指定毫秒数添加到当前对象的时间。AddMinutes(double)
: 返回一个新的DateTime
对象,它是将指定分钟数添加到当前对象的时间。AddMonths(int)
: 返回一个新的DateTime
对象,它是将指定月份数添加到当前对象的时间。AddSeconds(double)
: 返回一个新的DateTime
对象,它是将指定秒数添加到当前对象的时间。AddYears(int)
: 返回一个新的DateTime
对象,它是将指定年份数添加到当前对象的时间。CompareTo(Object)
: 比较两个DateTime
对象的顺序。Equals(Object)
: 判断两个DateTime
对象是否相等。IsDaylightSavingTime()
: 判断当前DateTime
对象是否处于夏令时。Subtract(TimeSpan)
: 返回一个新的DateTime
对象,它是当前对象的时间减去指定的TimeSpan
值。ToString()
: 将DateTime
对象转换为字符串。ToString(String)
: 使用指定的格式字符串将DateTime
对象转换为字符串。ToLocalTime()
: 将DateTime
对象从 UTC 时间转换为本地时间。ToUniversalTime()
: 将DateTime
对象从本地时间转换为 UTC 时间。
静态方法
DaysInMonth(int year, int month)
: 确定指定年份和月份的天数。IsLeapYear(int year)
: 确定指定年份是否为闰年。
操作符
==
和!=
: 比较两个DateTime
对象是否相等或不相等。-
: 从DateTime
对象中减去TimeSpan
对象。>
和<
: 比较两个DateTime
对象的大小。
格式化方法
DateTimeFormatInfo
类提供了格式化DateTime
对象的方法,例如GetMonthName(int)
和GetDayName(int)
。
使用这些 API,你可以执行日期和android时间的算术、格式化、比较和转换等操作。例如:
DateTime now = DateTime.Now; DjsateTime tomorrow = jsnow.AddDays(1); int daysInMonth = DateTime.DaysInMonth(2024, 7); bool isLeapYear = DateTime.IsLeapYear(2024); string formattedDate = now.ToString("yyyy-MM-dd");
到此这篇关于c#中的正则表达式和日期的使用的文章就介绍到这了,更多相关c#使用正则表达式内容请搜索编程客栈(www.devze.com)以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程客栈(www.devze.com)!
精彩评论