ToCharArray()

Namespace ›› System ›› MfString ›› Methods ››
Parent Previous Next

ToCharArray()

OutputVar := instance.ToCharArray()
OutputVar := instance.ToCharArray(startIndex)
OutputVar := instance.ToCharArray(startIndex, length)

ToCharArray()

Copies the characters in a specified substring in this instance to a MfList of MfChar.

ToCharArray(startIndex)

Copies the characters in a specified substring in this instance to a MfList of MfChar starting at the positing of startIndex.

ToCharArray(startIndex, length)

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.

Parameters

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

Returns a MfGenericList of MfChar containing MfChar instances representing all the chars of this instance of MfString.

Throws

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.

Remarks

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.

Example

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

See Also:MfChar
See Also:MfChar.ReturnAsObject
See Also:MfInteger
See Also:MfList