In this tutorial we will discuss equals() and equalsIgnoreCase() methods. Both of these methods are used for comparing two strings. The only difference between them… [Read More]
Java String endsWith() Method with example
Java String endsWith(String suffix) method checks whether the String ends with a specified suffix. This method returns a boolean value true or false. If the… [Read More]
Java – String copyValueOf() Method example
The method copyValueOf() is used for copying an array of characters to the String. The point to note here is that this method does not… [Read More]
Java – String contentEquals() Method example
The method contentEquals() compares the String with the String Buffer and returns a boolean value. It returns true if the String matches to the String… [Read More]
Java String concat() Method example
Java string concat() method concatenates multiple strings. This method appends the specified string at the end of the given string and returns the combined string…. [Read More]
Java String compareToIgnoreCase() Method example
The Java String compareToIgnoreCase() method compares two strings lexicographically and returns 0 if they are equal. As we know compareTo() method does the same thing,… [Read More]
Java String compareTo() Method with examples
The Java String compareTo() method is used for comparing two strings lexicographically. Each character of both the strings is converted into a Unicode value for… [Read More]
Java String charAt() Method example
The Java String charAt(int index) method returns the character at the specified index in a string. The index value that we pass in this method… [Read More]
Java – String Class and Methods with examples
String is a sequence of characters, for e.g. “Hello” is a string of 5 characters. In java, string is an immutable object which means it… [Read More]
Copy all the elements of one Vector to another Vector example
In this example we will see how to copy all the elements of a Vector to another Vector. This process replaces the existing elements of… [Read More]
- « Previous Page
- 1
- …
- 50
- 51
- 52
- 53
- 54
- …
- 65
- Next Page »