正则表达式---更改日期格式

前端之家收集整理的这篇文章主要介绍了正则表达式---更改日期格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。



示例:更改日期格式

        static string MDYToDMY(string input)
        {
            return Regex.Replace(input,"\\b(?<month>\\d{1,2})/(?<day>\\d{1,2})/(?<year>\\d{2,4})\\b","${day}-${month}-${year}");
        }
----------------------------------------------------------------------------------------------------
using System;
using System.Globalization;
using System.Text.RegularExpressions;

public class Class1
{
   public static void Main()
   {
      string dateString = DateTime.Today.ToString("d",DateTimeFormatInfo.InvariantInfo);
      string resultString = MDYToDMY(dateString);
      Console.WriteLine("Converted {0} to {1}.",dateString,resultString);
   }

   static string MDYToDMY(string input) 
   {
        return Regex.Replace(input,"${day}-${month}-${year}");
   }

}

原文链接:https://www.f2er.com/regex/360926.html

猜你在找的正则表达式相关文章