Go
Go
StringBuilder ReplaceWord
Demonstrates the ReplaceWord method.Chilkat Go Downloads
sb := chilkat.NewStringBuilder()
sb.Append("forest, lumber, lumberjack, jack, timberland")
// The ReplaceWord method replaces word occurances.
// For example:
numReplacements := sb.ReplaceWord("lumber","timber")
numReplacements = sb.ReplaceWord("jack","joe")
// The string content is now:
// forest, timber, lumberjack, joe, timberland
fmt.Println(*sb.GetAsString())
sb.DisposeStringBuilder()