NevronOpenVision
Nevron.Nov Namespace / NStringParser Class
Fields Properties Methods


NStringParser Class Members

The following tables list the members exposed by NStringParser.

Public Fields
 NameDescription
Public FieldA constants for the asterisk character - *  
Public FieldDouble quote char - "  
Public FieldSingle quote char - '  
Public FieldA contants for the slash character - /  
Top
Protected Fields
 NameDescription
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Fieldstatic (Shared in Visual Basic)  
Internal Field  
Internal Field  
Internal Field  
Protected FieldThe char array to parse.  
Protected FieldThe inclusive end position in the char array at which to end parsing.  
Protected FieldThe current position in the char array.  
Protected FieldThe inclusive start position in the char array from which to begin parsing.  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Top
Public Properties
 NameDescription
Public Property  
Top
Public Methods
 NameDescription
Public MethodOverloaded. Parses the given chars starting from the specified start position and ending at the specified end position (inclusive).  
Top
Protected Methods
 NameDescription
Protected MethodOverloaded. 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.  
Protected MethodReads the character at the current position without advancing the parser pointer.  
Protected MethodReads the character at the current position as an out parameter and advances the parser pointer.  
Protected MethodOverloaded. 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.  
Protected Method

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; }

}

 
Protected MethodSkips 1 character.  
Protected MethodReads until a non white space char is met. The parser's position is then positioned at this non white space character position.  
Protected MethodTrims the leading and trailing white space characters and updates the start and end indexes.  
Top
See Also