Removes the specified range of characters from this instance.
OutputVar := instance.Remove(startIndex, length)
Removes the specified range of characters from this instance.
startIndex
The zero-based position in this instance where removal begins.
Can be any type that matches IsInteger or var integer.
length
The number of characters to remove.
Can be any type that matches IsInteger or var integer.
A reference to this instance after the insert operation has completed.
Throws MfArgumentException if startIndex or length are not valid integers.
Throws MfArgumentOutOfRangeException if If startIndex or length is less than zero, or startIndex + length is greater than the length of this instance.
The current method removes the specified range of characters from the current instance. The characters at (startIndex + length) are moved to startIndex, and the string value of the current instance is shortened by length. The capacity of the current instance is unaffected.
rule1 := "0----+----1----+----2----+----3----+----4---"
rule2 := "01234567890123456789012345678901234567890123"
str := "The quick brown fox jumps over the lazy dog."
sb := new MfText.StringBuilder("StringBuilder.Remove method")
sb1 := new MfText.StringBuilder(str)
sb.AppendLine()
sb.AppendLine()
sb.AppendLine("Original value:")
sb.AppendLine(rule1)
sb.AppendLine(rule2)
sb.AppendLine(sb1.ToString())
sb.AppendLine()
sb1.Remove(10, 6) ; Remove "brown "
sb.AppendLine("New value:")
sb.AppendLine(rule1)
sb.AppendLine(rule2)
sb.Append(sb1.ToString())
MsgBox % sb.ToString()
/*
StringBuilder.Remove method
Original value:
0----+----1----+----2----+----3----+----4---
01234567890123456789012345678901234567890123
The quick brown fox jumps over the lazy dog.
New value:
0----+----1----+----2----+----3----+----4---
01234567890123456789012345678901234567890123
The quick fox jumps over the lazy dog.
*/