首页 > Windows开发 > 详细

c#使用正则表达式匹配提取日期

时间:2021-09-24 04:58:58      阅读:64      评论:0      收藏:0      [点我收藏+]

string target_p ="2021/09/18";

string target_q ="2021-09-18";

格式yyyy/MM/dd:   

MatchCollection mt = Regex.Matches(target_p , "([0-9]{4}/[0-9]{2}/[0-9]{2})");

格式yyyy-MM-dd:   

MatchCollection mt = Regex.Matches(target_q, "([0-9]{4}-[0-9]{2}-[0-9]{2})");

c#使用正则表达式匹配提取日期

原文:https://www.cnblogs.com/RainbowSea/p/15308524.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!