OutputVar := instance.Replace(oldValue, newValue)
OutputVar := instance.Replace(oldValue, newValue, startIndex, count)
Replaces, within a substring of this instance, all occurrences of a specified string with another specified string.
oldValue
The string to replace.
Can be var number or string or any object that derives from MfObject.
newValue
The string that replaces oldValue, or null.
Can be var number or string or any object that derives from MfObject.
A reference to this instance with all instances of oldValue replaced by newValue.
Throws MfArgumentNullException if oldValue is null.
Throws MfArgumentException if The length of oldValue is zero.
Throws MfArgumentOutOfRangeException if enlarging the value of this instance would exceed MaxCapacity.
This method performs an ordinal, case-sensitive comparison to identify occurrences of oldValue in the specified substring. If newValue is null, all occurrences of oldValue are removed.
See Example below.
Replaces, within a substring of this instance, all occurrences of a specified string with another specified string.
oldValue
The string to replace.
Can be var number or string or any object that derives from MfObject.
newValue
The string that replaces oldValue, or null.
Can be var number or string or any object that derives from MfObject.
startIndex
The position in this instance where the substring begins.
Can be any type that matches IsInteger or var integer.
count
The length of the substring.
Can be any type that matches IsInteger or var integer.
A reference to this instance with all instances of oldValue replaced by newValue in the range from startIndex to startIndex + count - 1.
Throws MfArgumentNullException if oldValue is null.
Throws MfArgumentException if The length of oldValue is zero.
Throws MfArgumentOutOfRangeException if startIndex or count is less than zero.
- or -
startIndex plus count indicates a character position not within this instance.
- or -
Enlarging the value of this instance would exceed MaxCapacity.
This method performs an ordinal, case-sensitive comparison to identify occurrences of oldValue in the specified substring. If newValue is null, all occurrences of oldValue are removed.
rule1 := "0----+----1----+----2----+----3----+----4---"
rule2 := "01234567890123456789012345678901234567890123"
str := "The quick br!wn d#g jumps #ver the lazy cat."
sb := new MfText.StringBuilder("StringBuilder.Replace 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.Replace("#", "!", 15, 29) ; Some "#" -> "!"
sb.AppendLine(rule1)
sb.AppendLine(rule2)
sb.AppendLine(sb1.ToString())
sb.AppendLine()
sb1.Replace("!", "o") ; All "!" -> "o"
sb.AppendLine(rule1)
sb.AppendLine(rule2)
sb.AppendLine(sb1.ToString())
sb.AppendLine()
sb1.Replace("cat", "dog") ; All "cat" -> "dog"
sb.AppendLine(rule1)
sb.AppendLine(rule2)
sb.AppendLine(sb1.ToString())
sb.AppendLine()
sb1.Replace("dog", "fox", 15, 20) ; Some "dog" -> "fox"
sb.AppendLine("Final value:")
sb.AppendLine(rule1)
sb.AppendLine(rule2)
sb.Append(sb1.ToString())
MsgBox % sb.ToString()
/*
StringBuilder.Replace method
Original value:
0----+----1----+----2----+----3----+----4---
01234567890123456789012345678901234567890123
The quick br!wn d#g jumps #ver the lazy cat.
0----+----1----+----2----+----3----+----4---
01234567890123456789012345678901234567890123
The quick br!wn d!g jumps !ver the lazy cat.
0----+----1----+----2----+----3----+----4---
01234567890123456789012345678901234567890123
The quick brown dog jumps over the lazy cat.
0----+----1----+----2----+----3----+----4---
01234567890123456789012345678901234567890123
The quick brown dog jumps over the lazy dog.
Final value:
0----+----1----+----2----+----3----+----4---
01234567890123456789012345678901234567890123
The quick brown fox jumps over the lazy dog.
*/