Click or drag to resize

ParserGetToDelimiter Method

Parse from just after the current token up to (but not including) the specified delimiter, returning that as a string, and advancing to the delimiter as the next token. Stops just short of EOL if the delimiter isn't found. If the optional 'abortDelimiter' is non-zero, the string extraction will stop if it is encountered.

Namespace:  Nova.Parsing
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public string GetToDelimiter(
	char delimiter,
	char abortDelimiter = ''
)

Parameters

delimiter
Type: SystemChar
abortDelimiter (Optional)
Type: SystemChar

Return Value

Type: String
See Also