Java StringBuffer codePointAt(int index) method returns a code point value of the character present at the specified index. A code point is a numeric value that… [Read More]
Java StringBuffer offsetByCodePoints()
Java StringBuffer offsetByCodePoints(int index, int codePointOffset) method returns the index of a character that is offset from the given index by the specified code points…. [Read More]
Java StringBuffer charAt()
Java StringBuffer charAt() method returns the character present at the given index. In this tutorial, we will discuss the charAt() method with examples. Syntax of… [Read More]
Java StringBuffer ensureCapacity()
Java StringBuffer ensureCapacity() method ensures that specified minimum capacity is maintained. If the current capacity is less than the specified minimum capacity then the capacity… [Read More]
Java StringBuffer capacity()
Java StringBuffer capacity() method returns the current capacity of StringBuffer object. In this tutorial, we will discuss the capacity() method in detail with the help of… [Read More]
Java StringBuffer toString()
Java StringBuffer toString() method returns the string representation of this character sequence. An object of StringBuffer class represents a character sequence. The toString() method converts… [Read More]
Java StringBuffer getChars()
In this guide, we will discuss Java StringBuffer getChars() method with examples. Syntax of getChars() method //it will copy the chars from index 1 to… [Read More]
Java StringBuffer indexOf()
Java StringBuffer indexOf() method returns the first occurrence of the given string in this sequence. In this guide, we will discuss indexOf() method with examples…. [Read More]
Java StringBuffer lastIndexOf()
Java StringBuffer lastIndexOf() method returns the index of last occurrence of the given string in this sequence. In this tutorial, we will discuss the lastIndexOf()… [Read More]
Java StringBuffer length()
Java StringBuffer length() method returns the length of the given sequence. The StringBuffer instance represents a character sequence, the length() method returns the total number… [Read More]
- « Previous Page
- 1
- …
- 15
- 16
- 17
- 18
- 19
- …
- 150
- Next Page »