Build a string token.

Namespace:  SingularSys.Jep.ConfigurableParser.Tokens
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public StringToken(
	string source,
	string uquote,
	char delim,
	bool incQuotes
)
Visual Basic (Declaration)
Public Sub New ( _
	source As String, _
	uquote As String, _
	delim As Char, _
	incQuotes As Boolean _
)
Visual C++
public:
StringToken(
	String^ source, 
	String^ uquote, 
	wchar_t delim, 
	bool incQuotes
)

Parameters

source
Type: System..::.String
the source text which matches, includes quote marks
uquote
Type: System..::.String
the unquoted text, does not include quote marks
delim
Type: System..::.Char
the delimiter character used
incQuotes
Type: System..::.Boolean
whether or not to include the quotes

See Also