Over 10 Million Study Resources Now at Your Fingertips


Download as :
Rating : ⭐⭐⭐⭐⭐
Price : $10.99
Language:EN
Pages: 2

Class design the method signatures are follows replace oldchar

Creating and Manipulating Strings 109

equals() and equalsIgnoreCase()

This example should be fairly intuitive. In the fi rst example, the values aren’t exactly the same. In the second, they are exactly the same. In the third, they differ only by case, but it is okay because we called the method that ignores differences in case.

startsWith() and endsWith()

Again, nothing surprising here. Java is doing a case-sensitive check on the values provided.

contains()

110 Chapter 3 ■ Core Java APIs

Again, we have a case-sensitive search in the String. The contains() method is a conve-nience method so you don’t have to write str.indexOf(otherString) != -1.

String replace(CharSequence oldChar, CharSequence newChar)

The following code shows how to use these methods:

You’ve made it through the all the String methods you need to know except one. We left the easy one for last. The trim() method removes whitespace from the beginning and end of a String. In terms of the exam, whitespace consists of spaces along with the \t (tab) and \n (newline) characters. Other characters, such as \r (carriage return), are also included in what gets trimmed. The method signature is as follows:

public String trim()

Method Chaining

It is common to call multiple methods on the same String, as shown here:

How It Works
Login account
Login Your Account
Add to cart
Add to Cart
Payment
Make payment
Document download
Download File
PageId: ELIC819223
img
Uploaded by :
RE5P5WL1
Page 1 Preview
class design the method signatures are follows rep
Sell Your Old Documents & Earn Wallet Balance