RegexParser.Regex2.Matches C# (CSharp) Method

Matches() public method

public Matches ( string input ) : MatchCollection2
input string
return MatchCollection2
        public MatchCollection2 Matches(string input)
        {
            return new MatchCollection2(Matcher.GetMatches(input));
        }

Same methods

Regex2::Matches ( string input, string patternText ) : MatchCollection2