Name
|
Description
|
Add
|
Adds the value of the specified argument to the end of the StringArray, increasing the dimension of the StringArray by one. Returns the new dimension of the StringArray.
|
BuildSingleString
|
Returns a concatenation of the elements of the StringArray, delimited by the user-specified character sequence.
|
ClearArray
|
Deletes all elements of the StringArray, changing the StringArray Dimension to Zero (0).
|
ClearSavedStates
|
Clears previous saved states for this object.
|
Erase
|
Removes the specified element from the StringArray, decreasing the dimension of the StringArray by one.
|
Find
|
Returns the position of the specified string (or character) in the calling String, or the number of matches in the calling StringArray.
|
GetFromFile
|
Load the object state from the specified FreeFlyer object file.
|
GetFromString
|
Load the object state from the specified string.
|
GetShuffledElements
|
Returns a copy of the calling StringArray where the elements have been randomly shuffled. Calling SeedNoise will set the seed for this method.
|
GetUniqueElements
|
Returns a StringArray containing the unique elements of the calling StringArray in the order in which they appeared in the calling StringArray.
|
IFind
|
Returns the position of the specified string (or character) in the calling String, or the number of matches in the calling StringArray, ignoring case.
|
Insert
|
Inserts a value into the calling StringArray at the specified index, increasing the dimension of the StringArray by one.
|
IsEqualTo
|
Determines if two arrays are equal.
|
Push
|
Adds the value of the specified argument to the end of the StringArray, increasing the dimension of the StringArray by one. Returns the new dimension of the StringArray.
|
PushBack
|
Adds the value of the specified argument to the end of the StringArray, increasing the dimension of the StringArray by one. Returns the new dimension of the StringArray.
|
PushFront
|
Adds the value of the specified argument to the front of the calling StringArray, increasing the dimension of the StringArray by one. Returns the new dimension of the StringArray.
|
PutToFile
|
Convert the object state to FreeFlyer object xml and write to a file.
|
PutToString
|
Convert the object state to FreeFlyer object xml and return as a string.
|
ReadFromFile
|
Reads the entire contents of a file and places each line into an individual element of a StringArray.
|
ReferenceEquals
|
Returns 1 if the argument refers to the calling object and 0 otherwise.
|
Restore
|
Restore an object's state from a previously saved state.
|
Reverse
|
Returns a string array with the elements in reverse order.
|
Save
|
Save the object's state so that it can be restored later.
|
Shuffle
|
Randomly shuffles the elements of the calling StringArray. Calling SeedNoise will set the seed for this method.
|
SortAscending
|
Sorts the elements of the array in ascending order (smallest to largest).
|
SortAscendingCaseInsensitive
|
Sorts the calling StringArray in ascending order and reorders all input StringArray and Array arguments to maintain their relative indexing with respect to the calling StringArray. This method is case-insensitive.
|
SortDescending
|
Sorts the elements of the array in descending order (largest to smallest).
|
SortDescendingCaseInsensitive
|
Sorts the calling StringArray in descending order, reordering all input StringArray and Array arguments in order to maintain the relative positions of the array elements. This method is case-insensitive.
|
SortedAscending
|
Returns a copy of the calling StringArray sorted in ascending order.
|
SortedDescending
|
Returns a copy of the calling StringArray sorted in descending order.
|
SplitSort
|
Splits each element of the calling StringArray into columns based on the delimiter specified by an input String, then sorts the columns based on the precedence specified in an input Array. If no input Array is used, the first column will be sorted, reordering the other columns to maintain the relative positions of the array elements. Then reforms each row, using spaces or a second input String to merge the columns.
|
ToArray
|
Converts the StringArray to a normal Array with Variable values.
|
WriteToFile
|
Writes the contents of a StringArray to a file. Each Element becomes a new line in the file.
|