StringBuilder str = new StringBuilder();
str.append("Hello");
str.append("World");
System.out.println(str.toString());
public boolean equals(Object anotherObject)
String myStr1 = "Hello";
String myStr2 = "World";
System.out.println("Hello".toLowerCase().equals("hello")); // Returns true
System.out.println(myStr1.equals(myStr2)); //Returns false
String myStr1 = "Hello";
String myStr2 = "Hello";
System.out.println(myStr1.compareTo(myStr2)); // Returns 0 because they are equal
System.out.println("be".compareTo("bee"));
String date = String.join("/","30","04","2021");
System.out.print(date);
String time = String.join(":", "12","10","10");
System.out.println(" "+time);
String[] strings = "30-04-2021".split("-");
for (int i = 0; i < strings.length; i++)
System.out.print(strings[i] + " ");
str.indexOf();
str.substring();
str.replace();
Interger.parseInt();
assertTrue()