Метод | Описание | |
---|---|---|
AddError ( object expectedMessage = null, bool beforeExisting = false, [ callerName = null ) : bool |
Adds an error (the message starts with the caller's method name) to the exisitng ones (if any).
|
|
BackwardAddError ( int savedStartIndex, object expectedMessage = null, [ callerName = null ) : bool |
Moves back the head at a previously index and adds an error as a consequence of any previous errors. The message starts with the caller's method name.
|
|
Forward ( int charCount ) : bool |
Increments the StartIndex (and decrements Length) with the specified character count and clears any existing error. Always returns true.
|
|
MatchChar ( char c ) : bool |
Matches an exact single character. If match fails, SetError is called.
|
|
MatchText ( string text, System.StringComparison comparisonType = StringComparison.OrdinalIgnoreCase ) : bool |
Matches a text.
|
|
MatchWhiteSpaces ( int minCount = 1 ) : bool |
Matches a sequence of white spaces.
|
|
SetError ( object expectedMessage = null, [ callerName = null ) : bool |
Sets an error and always returns false. The message starts with the caller's method name. Use SetSuccess to clear any existing error.
|
|
SetSuccess ( ) : bool |
Clears any error and returns true.
|
|
StringMatcher ( string text, int startIndex ) : System |
Initializes a new instance of the StringMatcher class on a non null string.
|
|
StringMatcher ( string text, int startIndex, int length ) : System |
Initializes a new instance of the StringMatcher class on a substring.
|
|
ToString ( ) : string |
Overridden to return a detailed string with ErrorMessage (if any), the Head character, StartIndex position and whole Text.
|
|
TryMatchChar ( char c ) : bool |
Attempts to match an exact single character.
|
|
TryMatchText ( string text, System.StringComparison comparisonType = StringComparison.OrdinalIgnoreCase ) : bool |
Matches a text without setting an error if match fails.
|
|
UncheckedMove ( int delta ) : bool |
Moves the head without any check and returns always true: typically called by successful TryMatchXXX methods. Can be used to move the head at any position in the Text (or outside it since NO checks are made).
|
Метод | Описание | |
---|---|---|
FormatMessage ( object expectedMessage, string callerName ) : string |
public AddError ( object expectedMessage = null, bool beforeExisting = false, [ callerName = null ) : bool | ||
expectedMessage | object |
/// Optional object. Its |
beforeExisting | bool | /// True to add the error before the exisitng ones (as a consequence: [added] <-- [previous]), /// false to append it (as a cause: [previous] <-- [added]) |
callerName | [ | Name of the caller (automatically injected by the compiler). |
Результат | bool |
public BackwardAddError ( int savedStartIndex, object expectedMessage = null, [ callerName = null ) : bool | ||
savedStartIndex | int | Index to reset. |
expectedMessage | object |
/// Optional object. Its |
callerName | [ | Name of the caller (automatically injected by the compiler). |
Результат | bool |
public Forward ( int charCount ) : bool | ||
charCount | int | The successfully matched character count. /// Must be positive and should not move head past the end of the substring. |
Результат | bool |
public MatchChar ( char c ) : bool | ||
c | char | The character that must match. |
Результат | bool |
public MatchText ( string text, System.StringComparison comparisonType = StringComparison.OrdinalIgnoreCase ) : bool | ||
text | string | The string that must match. Can not be null nor empty. |
comparisonType | System.StringComparison | Specifies the culture, case, and sort rules. |
Результат | bool |
public MatchWhiteSpaces ( int minCount = 1 ) : bool | ||
minCount | int | Minimal number of white spaces to match. |
Результат | bool |
public SetError ( object expectedMessage = null, [ callerName = null ) : bool | ||
expectedMessage | object |
/// Optional object. Its |
callerName | [ | Name of the caller (automatically injected by the compiler). |
Результат | bool |
public StringMatcher ( string text, int startIndex ) : System | ||
text | string | The string to parse. |
startIndex | int | Index where the match must start in |
Результат | System |
public StringMatcher ( string text, int startIndex, int length ) : System | ||
text | string | The string to parse. Can not be null. |
startIndex | int |
/// Index where the match must start in |
length | int |
/// Number of characters to consider in the string.
/// If |
Результат | System |
public TryMatchChar ( char c ) : bool | ||
c | char | The character that must match. |
Результат | bool |
public TryMatchText ( string text, System.StringComparison comparisonType = StringComparison.OrdinalIgnoreCase ) : bool | ||
text | string | The string that must match. Can not be null nor empty. |
comparisonType | System.StringComparison | Specifies the culture, case, and sort rules. |
Результат | bool |
public UncheckedMove ( int delta ) : bool | ||
delta | int | Number of characters. |
Результат | bool |