CK.Text.StringMatcher.StringMatcher C# (CSharp) Method

StringMatcher() public method

Initializes a new instance of the StringMatcher class on a non null string.
public StringMatcher ( string text, int startIndex ) : System
text string The string to parse.
startIndex int Index where the match must start in .
return System
        public StringMatcher( string text, int startIndex = 0 )
            : this( text, startIndex, text.Length - startIndex )
        {
        }

Same methods

StringMatcher::StringMatcher ( string text, int startIndex, int length ) : System