CoreClasses Xojo Plugin

StringMultiTokenizerList.Constructor Constructor (console safe)

The constructor for the StringMultiTokenizerList.

Constructor(
   str as String,
   delims as IStringIterator)

Parameters

str
The string to parse.
delims
The delimeters that separates the tokens. This can be a set of many delimeters. You can pass any class to this parameter that implements the IStringIterator interface. Note that the first delimeter has the highest priority if there are collisions.

Remarks

If you are subclassing the StringMultiTokenizerList class then you need to explicitly call the StringTokenizerList's constructor from the sub class constructor. This is because the StringMultiTokenzierList always needs to get the parameters that it takes in its contructor.

See Also

StringMultiTokenizerList Class