StringTokenizer Constructor (String, Char) |
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,
params char[] delims
)
Public Sub New (
str As String,
ParamArray delims As Char()
)
Parameters
- str
- Type: SystemString
The string to be tokenized. - delims
- Type: SystemChar
The delimiters used to tokenize the string.
See Also