Click or drag to resize

StringTokenizer Constructor (String, String)

Constructs a string tokenizer for the specified string using the given delimiters.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public StringTokenizer(
	string str,
	string delims
)

Parameters

str
Type: SystemString
The string to be tokenized.
delims
Type: SystemString
The delimiters used to tokenize the string (each char will be used as a delimiter).
Exceptions
ExceptionCondition
NullReferenceExceptionThrown when the passed string is null
See Also