正则表达式提取月份

 

        /// <summary>
        /// 从字符串中获取月份(MM,2位数字)
        /// </summary>
        /// <returns></returns>
        public static string GetMonth(string str)
        {
            string result = string.Empty;

            string pattern = @"(.*)((\d{4})\.(\d{1,2}))(.*)";
            string replacement = "$1$4$5";
            string newShortName = Regex.Replace(str, pattern, replacement);

            Regex regYf = new Regex(@"\D?(\d{1,})\D");
            Match m = regYf.Match(newShortName);
            if (null != m)
            {
                string yf = m.Groups[1].Value;
                result = yf.PadLeft(2, '0');
                if (yf.Length == 6)
                    result = yf.Substring(4, 2);
                else if (yf.Length <= 2)
                    result = yf.PadLeft(2, '0');
                else
                    result = yf;
            }
            else
            {
                result = string.Empty;
            }
            return result;
        }

 


 

        /// <summary>
        /// 从字符串中获取月份(MM,2位数字)
        /// </summary>
        /// <returns></returns>
        public static string GetMonth(string str)
        {
            //期间:2018年01月 币种:人民币 单位:元
            string pattern = @"(.*)(\d{4})(年)(\d{1,2})(月)(.*)";
            string replacement = "$2$4";
            string newShortName = Regex.Replace(str, pattern, replacement);

            Regex reg = new Regex(@"\d{6}");
            if (!reg.IsMatch(newShortName))
            {
                return "";
            }
            return newShortName;
        }
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值