Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Getting the Length of a String or a String Buffer
Methods used to obtain information about an object are known as accessor methods. One accessor method that you can use with both strings and string buffers is thelength
method, which returns the number of characters contained in the string or the string buffer. After the following two lines of code have been executed,len
equals 17:In addition toString palindrome = "Dot saw I was Tod"; int len = palindrome.length();length
, theStringBuffer
class has a method calledcapacity
, which returns the amount of space allocated for the string buffer rather than the amount of space used. For example, the capacity of the string buffer referred to bydest
in theStringsDemo
program never changes, although its length increases by 1 for each iteration of the loop. The following figure shows the capacity and the length ofdest
after nine characters have been appended to it.A string buffer's length is the number of characters it contains; a string buffer's capacity is the number of character spaces that have been allocated. The String
class doesn't have acapacity
method, because a string cannot change.Getting Characters by Index from a String or a String Buffer
You can get the character at a particular index within a string or a string buffer by using thecharAt
accessor. The index of the first character is 0; the index of the last islength()-1
. For example, the following code gets the character at index 9 in a string:Indices begin at 0, so the character at index 9 is 'O', as illustrated in the following figure:String anotherPalindrome = "Niagara. O roar again!"; char aChar = anotherPalindrome.charAt(9);Use the charAt
method to get a character at a particular index. The figure also shows that to compute the index of the last character of a string, you have to subtract 1 from the value returned by thelength
method.If you want to get more than one character from a string or a string buffer, you can use the
substring
method. Thesubstring
method has two versions, as shown in the following table:The following code gets from the Niagara palindrome the substring that extends from index 11 to index 15, which is the word "roar":
Use theString anotherPalindrome = "Niagara. O roar again!"; String roar = anotherPalindrome.substring(11, 15);substring
method to get part of a string or string buffer. Remember that indices begin at 0.
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |