forked from learning-zone/java-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStringBufferMethods.java
More file actions
47 lines (30 loc) · 1.11 KB
/
StringBufferMethods.java
File metadata and controls
47 lines (30 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package strings;
public class StringBufferMethods {
public static void main(String[] args) {
StringBuffer str = new StringBuffer("Hello");
int len = str.length();
System.out.println("Length of String Hello: " + len);
int cap = str.capacity();
System.out.println("Capacity of String Hello: " + cap);
str.append(" World");
System.out.println("Appended String: " + str);
str.insert(5, " for");
System.out.println("After Insert String: " + str);
str.insert(0, 5);
System.out.println("After inserting 5 at first position: "+str);
str.insert(3, true);
System.out.println("After inseting true at 3rd position: "+ str);
char arr[] = {'p', 'r', 'a', 'd', 'e', 'e', 'p'};
// insert character array at offset 9
str.insert(0, arr);
System.out.println(str);
str.reverse();
System.out.println("Reverse String: " + str);
str.delete(0, 5);
System.out.println("After Delete: " + str);
str.deleteCharAt(7);
System.out.println("After delete: " + str);
str.replace(5, 8, "Happy");
System.out.println("After Replace: "+str);
}
}