Newer
Older
RbFreqStand / RbFreqStandMeasure / VISA / Ulitity / RegexUlitity.cs
yxw on 9 Apr 2021 375 bytes 添加visa,同意引用方式
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

namespace Casic.Birmm.RbFreqStandMeasure.VISA.Ulitity
{
    public static class RegexUlitity
    {
        public static bool IsMatch(this string input, string pattern)
        {
            return Regex.IsMatch(input, pattern);
        }
    }
}