Свойство | Type | Description | |
---|---|---|---|
RegexDouble |
Méthode | Description | |
---|---|---|
BackwardSetError ( int savedStartIndex, object expectedMessage = null, [ callerName = null ) : bool |
Moves back the head at a previously index and sets an error. 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.
|
|
MatchChar ( char c ) : bool |
Matches an exact single character. If match fails, SetError is called.
|
|
MatchWhiteSpaces ( int minCount = 1 ) : bool |
Matches a sequence of white spaces.
|
|
SetError ( object expectedMessage = null, [ callerName = null ) : bool |
Sets an error. The message starts with the caller's method name.
|
|
SetSuccess ( ) : bool |
Clears any error and returns true.
|
|
StringMatcher ( string text, int startIndex ) : System |
Initializes a new instance of the StringMatcher class.
|
|
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.
|
|
TryMatchDoubleValue ( ) : bool |
Matches a double without getting its value nor setting an error if match fails. This uses RegexDouble.
|
|
TryMatchJSONQuotedString ( bool allowNull = false ) : bool |
Matches a quoted string without extracting its content.
|
|
TryMatchJSONQuotedString ( string &content, bool allowNull = false ) : bool |
Matches a quoted string without setting an error if match fails.
|
|
TryMatchText ( string s, System.StringComparison comparisonType = StringComparison.OrdinalIgnoreCase ) : bool |
Matches a string 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 TryMatch methods.
|
Méthode | Description | |
---|---|---|
FormatMessage ( object expectedMessage, string callerName ) : string | ||
ReadHexDigit ( char c ) : int |
public BackwardSetError ( 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). |
Résultat | 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. |
Résultat | bool |
public MatchChar ( char c ) : bool | ||
c | char | The character that must match. |
Résultat | bool |
public MatchWhiteSpaces ( int minCount = 1 ) : bool | ||
minCount | int | Minimal number of white spaces to match. |
Résultat | bool |
public SetError ( object expectedMessage = null, [ callerName = null ) : bool | ||
expectedMessage | object |
/// Optional object. Its |
callerName | [ | Name of the caller (automatically injected by the compiler). |
Résultat | bool |
public StringMatcher ( string text, int startIndex ) : System | ||
text | string | The string to parse. |
startIndex | int | Index where the match must start in |
Résultat | System |
public StringMatcher ( string text, int startIndex, int length ) : System | ||
text | string | The string to parse. |
startIndex | int |
/// Index where the match must start in |
length | int |
/// Number of characters to consider in the string.
/// If |
Résultat | System |
public TryMatchChar ( char c ) : bool | ||
c | char | The character that must match. |
Résultat | bool |
public TryMatchJSONQuotedString ( bool allowNull = false ) : bool | ||
allowNull | bool | True to allow 'null'. |
Résultat | bool |
public TryMatchJSONQuotedString ( string &content, bool allowNull = false ) : bool | ||
content | string | Extracted content. |
allowNull | bool | True to allow 'null'. |
Résultat | bool |
public TryMatchText ( string s, System.StringComparison comparisonType = StringComparison.OrdinalIgnoreCase ) : bool | ||
s | string | The string that must match. Can not be null nor empty. |
comparisonType | System.StringComparison | Specifies the culture, case, and sort rules. |
Résultat | bool |
public UncheckedMove ( int delta ) : bool | ||
delta | int | Number of characters. |
Résultat | bool |