OutputVar := instance.Remove(startIndex)
OutputVar := instance.Remove(startIndex, count)
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.
startIndex
The zero-based position to begin deleting characters.
Can be MfInteger or var containing Integer.
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 MfArgumentOutOfRangeException if startIndex is out of range
myStr := new MfString("Hello World") ; Create new instance of MfString Class
MsgBox % myStr.Remove(2) ; Displays He
Returns a new MfString with n characters removed from the zero-base startIndex forward, where n is count.
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 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 MfArgumentOutOfRangeException if startIndex or count is out of range.
myStr := new MfString("Hello World") ; Create new instance of MfString Class
MsgBox % myStr.Remove(2, 4) ; Displays HeWorld