The StringBuilder class implements both the IConstrainedStringBuilder
and the IStringBuilder
interface.
Name | Return type | Description |
---|---|---|
Reset |
IConstrainedStringBuilder |
Reset the current string to an empty string |
Append |
IStringBuilder |
Append the text to the current string and return it |
Insert |
IStringBuilder |
Insert the text at a specific location in the string and return it |
Remove |
IStringBuilder |
Remove characters from the string and return it |
Substring |
IStringBuilder |
Retrieve a specific part of the string and return it |
StartOf |
IStringBuilder |
Retrieve the start of a string and return it |
EndOf |
IStringBuilder |
Retrieve the end of a string and return it |
Replace |
IStringBuilder |
Replace characters in a string and return it |
ToString |
STRING |
Return the current string |