Remove()

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

Remove()

OutputVar := instance.Remove(startIndex)
OutputVar := instance.Remove(startIndex, count)

Remove(startIndex)

Returns a new MfString in which all the characters in the current instance, beginning at a specified position and continuing through the last position, have been deleted.

Parameters

startIndex

The zero-based position to begin deleting characters.
Can be MfInteger or var containing Integer.

Returns

Returns A new MfString that is equivalent to this instance except for the removed characters.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.

Throws

Throws MfArgumentOutOfRangeException if startIndex is out of range

Example

myStr := new MfString("Hello World") ; Create new instance of MfString Class
MsgBox % myStr.Remove(2) ; Displays He

Remove(startIndex, count)

Returns a new MfString with n characters removed from the zero-base startIndex forward, where n is count.

Parameters

startIndex

The zero-based position to begin deleting characters.
Can be MfInteger or var containing Integer.

count

The number of char to remove from startIndex, forward.
Can be MfInteger or var containing Integer.

Returns

Returns A new MfString that is equivalent to this instance except for the removed characters.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.

Throws

Throws MfArgumentOutOfRangeException if startIndex or count is out of range.

Example

myStr := new MfString("Hello World") ; Create new instance of MfString Class
MsgBox % myStr.Remove(2, 4) ; Displays HeWorld