OutputVar := instance.ToCharArray()
OutputVar := instance.ToCharArray(startIndex)
OutputVar := instance.ToCharArray(startIndex, length)
Copies the characters in a specified substring in this instance to a MfList of MfChar.
Copies the characters in a specified substring in this instance to a MfList of MfChar starting at the positing of startIndex.
Copies the characters in a specified substring in this instance to a MfList of MfChar starting at the positing of startIndex and stopping at length position.
startIndex
The zero-based index starting position of a substring in this instance.
Can be MfInteger instance or var containing Integer.
length
The length of the substring in this instance.
Can be MfInteger instance or var containing Integer.
Returns a MfGenericList of MfChar containing MfChar instances representing all the chars of this instance of MfString.
Throws MfNullReferenceException if method is called on a non-instance.
Throws MfArgumentException if the arguments are of the incorrect type.
Throws MfArgumentOutOfRangeException if startIndex or length are out of range.
Throws MfException on General Errors.
If ReturnAsObject is set to true then each MfChar in the results MfList of MfChar will have its MfChar.ReturnAsObject set to true; Otherwise each MfChar will have its MfChar.ReturnAsObject set to false.
mfsStr := new MfString("Hello World")
cArray := mfsStr.ToCharArray(6)
mfsResult := new MfString()
for i, mfcObj in cArray
{
mfsResult.AppendLine(MfString.Format("Result '{0}': {1}", i, mfcObj.ToString()))
}
MsgBox % mfsResult.Value
/*
Result '0': W
Result '1': o
Result '2': r
Result '3': l
Result '4': d
*/
See Also:MfChar
See Also:MfChar.ReturnAsObject
See Also:MfInteger
See Also:MfList