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
)
Public Sub New (
str As String,
delims As String
)
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 See Also