Name
|
Description
|
Attributes
|
CurrentToken
|
Returns the current string token within the StringTokenizer.Tokens StringArray. This property does not move the internal position of the Tokens StringArray.
|
Type: String
Access: Read-Only
|
DeclaredName
|
The name of the object as declared.
|
Type: String
Access: Read-Only
|
Delimiters
|
The delimiters to be used with the StringTokenizer object. The Delimiters array will resize automatically when delimiters are added or removed using the StringTokenizer.AddDelimiter and StringTokenizer.RemoveDelimiter methods. By default, this array contains one delimiter: a space.
|
Type: StringArray
Access: Read/Write
|
DelimiterType
|
Determines whether to use an array of string delimiters, or to define the delimiters based on a regular expression.
|
Type: String
Access: Read-Only
|
DisplayName
|
The name displayed for this object in output windows such as views, plots, and reports.
|
Type: String
Access: Read/Write
|
FirstTokenIndex
|
Moves the internal position of the Tokens StringArray to the first index and then returns the index of the internal position. This will always return a value of 0, since that is the index of the first element in the array. After calling this property, StringTokenizer.NextToken will return the value of the first element in the array.
|
Type: Variable
Access: Read-Only
|
HasMoreTokens
|
Returns a 1 or 0 that indicates whether the internal position of the Tokens StringArray is set to the last index. 1 means more tokens exist, 0 means there are no more tokens.
|
Type: Variable
Access: Read-Only
|
LastTokenIndex
|
Moves the internal position of the Tokens StringArray to the last index and then returns the index of the internal position. This will always return a value of StringTokenizer.NumberOfTokens-1, since that is the index of the last element in the array. After calling this property, StringTokenizer.NextToken will return a blank value, and StringTokenizer.HasMoreTokens will be 0.
|
Type: Variable
Access: Read-Only
|
NextToken
|
Returns the next string token within the StringTokenizer.Tokens StringArray and advances the internal position of the Tokens StringArray.
|
Type: String
Access: Read-Only
|
NumberOfTokens
|
The number of tokens that the StringTokenizer object has parsed out from a string. This is also the size of the Tokens string array.
|
Type: Variable
Access: Read-Only
|
ObjectId
|
The unique identifier for the object.
|
Type: Variable
Access: Read-Only
|
ObjectType
|
The type of the object.
|
Type: String
Access: Read-Only
|
PriorToken
|
Returns the previous string token within the StringTokenizer.Tokens StringArray and sets the internal position of the Tokens StringArray.
|
Type: String
Access: Read-Only
|
RegularExpression
|
A regular expression which defines the delimiters to be used with the StringTokenizer object. Note that FreeFlyer uses the boost library with Perl behavior for its regular expression evaluations.
|
Type: String
Access: Read/Write
|
StringToParse
|
The value which will be parsed by the StringTokenizer object.
|
Type: String
Access: Read/Write
|
Tokens
|
This StringArray contains the tokens that the StringTokenizer has parsed based on the StringToParse property. This is the "output" of the StringTokenizer.
|
Type: StringArray
Access: Read-Only
|
TreatConsecDelimAsOne
|
Determines whether consecutive delimiters will be treated as one delimiter or multiple.
|
Type: Variable
Access: Read/Write
|
TrimTokens
|
Determines whether whitespace will be removed from the front and back of any parsed tokens.
|
Type: Variable
Access: Read/Write
|