-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrings.java
32 lines (31 loc) · 915 Bytes
/
Strings.java
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
/*
TODO: Understand the concept of String.
*/
import java.util.*;
public class Strings
{
public static void main(String[] args)
{
// Strings are immutable
Scanner sc = new Scanner(System.in);
System.out.println("Enter some input");
String s1 = sc.nextLine();
String s = "Siddarth";
System.out.println(s.equalsIgnoreCase(s1));
// StringBuffer class let's us build mutuable string.
StringBuffer s2 = new StringBuffer("Siddarth");
s2.insert(8," Kumar jha");
System.out.println("StringBuffer");
System.out.println(s2);
// StringBuilder also does the same but it is non-synchronized.
StringBuilder s3 = new StringBuilder("Siddarth");
s3.append(" Kumar jha ");
System.out.println(s3);
System.out.println("StringBuilder");
StringTokenizer s4 = new StringTokenizer("Hello i am Siddarth");
while (s4.hasMoreTokens())
{
System.out.println(s4.nextToken());
}
}
}