A fast buffer for creating large strings.
Parameter | Type | Description |
---|---|---|
str | String |
Optional
|
See the dojox/string/Builder reference documentation for more information.
Append all arguments to the end of the buffer
Parameter | Type | Description |
---|---|---|
s | String... |
Append an array of items to the internal buffer.
Parameter | Type | Description |
---|---|---|
strings | Array |
Insert string str starting at index.
Parameter | Type | Description |
---|---|---|
index | Number | |
str | String |
Remove len characters starting at index start. If len is not provided, the end of the string is assumed.
Parameter | Type | Description |
---|---|---|
start | Number | |
len | Number |
Optional
|
Replace instances of one string with another in the buffer.
Parameter | Type | Description |
---|---|---|
oldStr | String | |
newStr | String |