MatchWhiteSpaces() public method

Matches a sequence of white spaces.
public MatchWhiteSpaces ( int minCount = 1 ) : bool
minCount int Minimal number of white spaces to match.
return bool
Exemplo n.º 1
0
 /// <summary>
 /// Skips white spaces: simply calls <see cref="StringMatcher.MatchWhiteSpaces(int)"/>
 /// with 0 minimal count of spaces.
 /// </summary>
 protected virtual void SkipWhiteSpaces()
 {
     _m.MatchWhiteSpaces(0);
 }