Skip to content

Commit

Permalink
add methods to StringBuilder.md
Browse files Browse the repository at this point in the history
  • Loading branch information
christof-ochs committed Aug 15, 2024
1 parent 09b4098 commit bb23f95
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/StringBuilder.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@ The StringBuilder class implements both the `IConstrainedStringBuilder` and the
| `Reset` | [`IConstrainedStringBuilder`](IConstrainedStringBuilder.md) | Reset the current string to an empty string|
| `Append` | [`IStringBuilder`](IStringBuilder.md) | Append the text to the current string and return it|
| `Insert` | [`IStringBuilder`](IStringBuilder.md) | Insert the text at a specific location in the string and return it|
| `ToString` | `STRING` | Return the current string|
| `Remove` | [`IStringBuilder`](IStringBuilder.md) | Remove characters from the string and return it|
| `Substring`| [`IStringBuilder`](IStringBuilder.md) | Retrieve a specific part of the string and return it|
| `StartOf` | [`IStringBuilder`](IStringBuilder.md) | Retrieve the start of a string and return it|
| `EndOf` | [`IStringBuilder`](IStringBuilder.md) | Retrieve the end of a string and return it|
| `Replace` | [`IStringBuilder`](IStringBuilder.md) | Replace characters in a string and return it|
| `ToString` | `STRING` | Return the current string|

0 comments on commit bb23f95

Please sign in to comment.