Name | Description | |
---|---|---|
Asterisk | A constants for the asterisk character - * | |
DoubleQuote | Double quote char - " | |
SingleQuote | Single quote char - ' | |
Slash | A contants for the slash character - / |
The following tables list the members exposed by NStringParser.
Name | Description | |
---|---|---|
Asterisk | A constants for the asterisk character - * | |
DoubleQuote | Double quote char - " | |
SingleQuote | Single quote char - ' | |
Slash | A contants for the slash character - / |
Name | Description | |
---|---|---|
AjAE | ||
bjAE | ||
CIAE | ||
CjAE | ||
dIAE | ||
djAE | ||
EIAE | ||
EjAE | ||
fIAE | ||
fjAE | ||
GIAE | ||
GjAE | ||
hIAE | ||
hjAE | ||
IIAE | ||
IjAE | ||
jIAE | ||
KIAE | ||
lIAE | ||
m_Chars | The char array to parse. | |
m_EndPosition | The inclusive end position in the char array at which to end parsing. | |
m_Position | The current position in the char array. | |
m_StartPosition | The inclusive start position in the char array from which to begin parsing. | |
MIAE | ||
nIAE | ||
OIAE | ||
pIAE | ||
QIAE | ||
rIAE | ||
SIAE | ||
tIAE | ||
UIAE | ||
vIAE | ||
WIAE | ||
xIAE | ||
YIAE |
Name | Description | |
---|---|---|
EndReached |
Name | Description | |
---|---|---|
Parse | Overloaded. Parses the given chars starting from the specified start position and ending at the specified end position (inclusive). |
Name | Description | |
---|---|---|
CharactersMatch | Overloaded. Checks whether the next characters in the char array match the ones in the given string starting from the current reading position and from the specified position in the string. A case sensitive check is performed. | |
PeekChar | Reads the character at the current position without advancing the parser pointer. | |
ReadChar | Reads the character at the current position as an out parameter and advances the parser pointer. | |
ReadTo | Overloaded. Reads a token from the current position (inclusive) to the first occurrence of the given stop char (exclusive). The position of the first occurrence of the stop char becomes the new reading position. Returns false if the parser has reached its end position. | |
ReadToCloseChar | Reads to the given close char, regarding other open and close chars as nested scopes. For example the following string will be read as a single token and not only to the first closing brace: { p.test { font-family:verdana,sans-serif;font-size:14px; } } | |
SkipChar | Skips 1 character. | |
SkipWhiteSpaces | Reads until a non white space char is met. The parser's position is then positioned at this non white space character position. | |
Trim | Trims the leading and trailing white space characters and updates the start and end indexes. |