public PcreDfaMatchResult Match(string subject, int startIndex, PcreDfaMatchOptions options)
        {
            var settings = new PcreDfaMatchSettings
            {
                AdditionalOptions = options,
                StartIndex        = startIndex
            };

            return(Match(subject, settings));
        }
예제 #2
0
 public PcreDfaMatchResult Match(string subject, int startIndex, PcreDfaMatchOptions options)
 => Match(subject, PcreDfaMatchSettings.GetSettings(startIndex, options));
 public PcreDfaMatchResult Match(string subject, PcreDfaMatchOptions options)
 => Match(subject, 0, options);
예제 #4
0
 public PcreDfaMatchResult Match(string subject, PcreDfaMatchOptions options)
 {
     return(Match(subject, 0, options));
 }