This method appends the mentioned string with the existing string. You can also with arguments like boolean, char, int, double, float, etc.
It will insert the mentioned string to the other string from the specified offset position. Like append, you can overload this method with arguments like (int, boolean), (int, int), (int, char), (int, double), (int, float), etc.
It will replace the original string with the specified string from the start index till the end index.
This method will delete the string from the mentioned start index till the end index.
It will reverse the string.
This will show the current StringBuilder capacity.
This method ensures that the StringBuilder capacity is at least equal to the mentioned minimum.
It will return the character at the specified index.
This method is used to return the length (total characters) of the string.
Starting from the specified index till the end, this method will return the substring.
It will return the substring from the start index till the end index.
This method will return the index where the first instance of the specified string occurs.
It will return the index where the specified string occurs the last.
It will attempt to reduce the size of the StringBuilder.