String Buffer Example Java Program
Definition
StringBuffer class is a mutable class unlike the String class which is immutable. Both the capacity and character string of a StringBuffer Class. StringBuffer can be changed dynamically.Syntax
StringBuffer Variable_name = new StringBuffer("String_sequence");
String Buffer Example Program
public class StringBufferExample { public static void main(String[] args) { StringBuffer sb = new StringBuffer("She sells sea shells "); System.out.println("Given stringbuffer is: " + sb); System.out.println("length of stringbuffer is: " + sb.length() + ", capacity of stringbuffer is: " + sb.capacity()); System.out.println("character at index 5 of the stringbuffer is: " + sb.charAt(5)); System.out.println("codePointAt index 5 of the stringbuffer is: " + sb.codePointAt(5)); System.out.println("appendind the stringbuffer: " + sb.append("on the sea shore")); System.out.println("substring of stringbuffer from index 10 to 20 is: " + sb.substring(10,20)); System.out.println("reverse of the stringbuffer is: " + sb.reverse()); } }
Sample Output
Output is: Given stringbuffer is: She sells sea shells length of stringbuffer is: 21, capacity of stringbuffer is: 37 character at index 5 of the stringbuffer is: e codePointAt index 5 of the stringbuffer is: 101 appendind the stringbuffer: She sells sea shells on the sea shore substring of stringbuffer from index 10 to 20 is: sea shells reverse of the stringbuffer is: erohs aes eht no sllehs aes slles ehS
String Programs
- Check Case Of A Character Example Java Program
- String Reverse Example Java Program
- Trim A String Example Java Program
- Find all Substrings of a given string Example Java Program
- Repetitions In String Example Java Program
- First Repeated Character Example Java Program
- String Buffer Example Java Program
- String Builder Example Java Program
- String Comparison Example Java Program
- Convert A String To Array Example Java Program
- Equals and equalsIgnoreCase Example Java Program
- Convert String To ArrayList Example Java Program
- Convert String To Lowercase Example Java Program
- String To CharacterArray Example Java Program
- Convert To Uppercase Example Java Program
- Find The Character At A Particular Index Example Java Program
- Find Index Of A Particular Character Example Java Program
- Find Index Of A Particular String Example Java Program
- Replace Character In A String Example Java Program
- String Concatenation Example Java Program
- String Length Example Java Program
- Capitalize the starting letter of each word in a sentence
- Convert Character Array to String Example Java Program
- Check Input Strings are Anagram or Not
Read More Articles
- Multiple Inheritance Using Interface Example Java Program
- Single Inheritance Example Java Program
- Multilevel Inheritance Example Java Program
- Hierarchical Inheritance Example Java Program
- Find all Substrings of a given string Example Java Program
- Create Matrix Example Java Program
- Sum Of Three Numbers Example Java Program
- Heap Sort Example Java Program
- Twin Prime Example Java Program
- Compile Time Polymorphism Example Java Program