Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Run the following code to check how String class Methods work. String myString = KOI is my University; String s 1 = KOI; String s

Run the following code to check how String class Methods work.
String myString = "KOI is my University";
String s1= "KOI";
String s2= "koi";
String s3=" Hello KOI ";
System.out.println("Char at index 2(third char): "+ myString.charAt(2));
System.out.println("After Concat: "+ myString.concat("-Enjoy-"));
System.out.println("Checking equals with case: "+s2.equals(s1));
System.out.println("Checking Length: "+ myString.length());
System.out.println("Replace function: "+ myString.replace("fun", "easy"));
System.out.println("SubString of myString: "+ myString.substring(8));
System.out.println("SubString of myString: "+ myString.substring(8,12));
System.out.println("Converting to lower case: "+ myString.toLowerCase());
System.out.println("Converting to upper case: "+ myString.toUpperCase());
System.out.println("Triming string: "+ s3.trim());
System.out.println("searching s1 in myString: "+ myString.contains(s1));
System.out.println("searching s2 in myString: "+ myString.contains(s2));

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

SQL Instant Reference

Authors: Gruber, Martin Gruber

2nd Edition

0782125395, 9780782125399

More Books

Students also viewed these Databases questions

Question

Be prepared to address excessive absenteeism

Answered: 1 week ago