StringBuilder
StringBuilder class is used to create mutable(modifiable) string.
The java Stringbuilder calss is same as Stringbuffer.
StringBuilder is a non-synchronized.
Its is available since JDK 1.5.
Important constructors of StringBuilder Class:
StringBuilder(): creates an empty string Builder with the initial capacity of 16.
StringBuilder(String str): creates a string Builder with the specified string.
3.StringBuilder(int length): creates an empty string Builder with the specified capacity...