Rule: All Indexes Start at 0.
Whenever using an element index for sequential data in Java, the first index is always 0. This implies that the last index is always the length of the sequence minus 1.
""
). In fact, there is a second way to instantiate a new String, which is the way we instantiate any object in Java. That is, by using the new keyword to invoke the class constructor. In the following program we create two String objects: one using literal notation and the other by invoking the String constructor using the new keyword. Both result in a new String object.// Strings.java
public class Strings {
public static void main(String[] args) {// Start execution here
String name1, name2; // Declare variables
name1 = "Athos"; // Assign String literal
name2 = new String("Porthos"); // Invoke String constructor
System.out.println(name1 + " and " + name2);
}
}
.
). If we follow an object with a dot, we are effectively peering into the inner scope of the object. We are able to access anything within the object that the object exposes. To demonstrate, let’s have a look at what objects of type String
implement.toUpperCase()
. As the method name implies, it converts all characters in a String to uppercase and returns a new String composed of all uppercase letters. Recall in Section 2.6 we learned that a String object is immutable. All String methods that seemingly modify internal character data, actually return a new String object.toUpperCase()
method which returns a new String
made up of uppercase characters only.jshell> String name2 = new String("Porthos"); // Create a new String object name2 ==> "Porthos" | created variable name2 : String jshell> String name3 = name2.toUpperCase(); // Produce an uppercase version name3 ==> "PORTHOS" | created variable name3 : String jshell>
name3
now references an object of type String
with the value "PORTHOS"
.name3.
and then press the TAB key. JShell will give you a list of all accessible names, like in the following JShell session. In the case of String everything accessible is a method, hence each item in the list is followed by one or two parentheses.jshell> name3. // Press the TAB key charAt( chars() codePointAt( codePointBefore( codePointCount( codePoints() compareTo( compareToIgnoreCase( concat( contains( contentEquals( describeConstable() endsWith( equals( equalsIgnoreCase( formatted( getBytes( getChars( getClass() hashCode() indent( indexOf( intern() isBlank() isEmpty() lastIndexOf( length() lines() matches( notify() notifyAll() offsetByCodePoints( regionMatches( repeat( replace( replaceAll( replaceFirst( resolveConstantDesc( split( startsWith( strip() stripIndent() stripLeading() stripTrailing() subSequence( substring( toCharArray() toLowerCase( toString() toUpperCase( transform( translateEscapes() trim() wait(
Retrieving String length: | int length = myStr.length(); |
Comparing Strings: | boolean isEqual = myStr1.equals(myStr2); |
Concatenating Strings: | char concat = myStr1.concatenate(myStr2); |
Accessing characters: | char firstChar = myStr.charAt(idx); |
Extracting substrings: | String substring = myStr.substring(startIdx, endIdx); |
Finding substring: | int index = myStr.indexOf(subStr); |
Converting case: | String lowercase = myStr.toLowerCase(); |
Converting case: | String uppercase = myStr.toUpperCase(); |
Replacing substrings: | String replaced = myStr.replace(oldValue, newValue); |
Removing whitespace: | String trimmed = myStr.trim(response); |
equals()
method instead of the ==
operator. The equals()
method compares the two Strings character-by-character, while the ==
operator checks if the two Strings reference the same memory location. Using ==
to compare Strings
is rarely what you want to do. Use it only if you understand the difference. Otherwise, .equals()
is the better choice.// StringExample.java
public class StringExample {
public static void main(String[] args) {
String part1 = new String("Anti"); // String constructor
String part2 = "disestablishmentarianism"; // String literal
String word = part1.concat(part2); // Concat Strings
// Get word length
int len = word.length();
System.out.println(word + " has " + len + " characters");
// Get character at an index (starts at 0)
char first = word.charAt(0);
char last = word.charAt( word.length() - 1 );
System.out.println("The first character is " + first);
System.out.println("The last character is " + last);
// Find a substring
int idx = word.indexOf("dis");
System.out.println("The substring 'dis' starts at index " + idx);
// Replace substrings
String newWord = word.replace("Anti", "Pro");
System.out.println("The new word is " + newWord);
}
}
javac StringExample.java java StringExample Antidisestablishmentarianism has 28 characters The first character is A The last character is m The substring 'dis' starts at index 4 The new word is Prodisestablishmentarianism
concate()
method of String
does the same job as the +
operator with String
operands. You may nest concat()
invocations.0
to the charAt(0)
method returns 'A'
. To get the last character, we must pass an index equal to length() - 1. If the first index is 0, then the last index must be 1 less than the length. This is a general rule in Java. All indexes start at 0.