
Java: String toLowerCase() method
In this article, we will discuss how to convert each individual characters inside a String into a lowercase character using String’s toLowerCase() method toLowerCase Read More
In this article, we will discuss how to convert each individual characters inside a String into a lowercase character using String’s toLowerCase() method toLowerCase Read More
In this article, we will discuss how to convert String into char[] array using String’s toCharArray() method toCharArray() method: This String method is used Read More
In this article, we will discuss about how to get substring (partial string) using String’s substring() method substring() method: This String method returns substring Read More
In this article, we will check or test whether string starts with specified prefix or NOT using String’s startsWith() method startsWith() method: This String Read More
In this article, we will discuss how to split strings using specified delimiter in String’s split() method split() method: This String method is used Read More
In this article, we will discuss different variants of replace methods to replace character/substring with another new string using String’s replace() method replace() method: Read More
In this article, we will discuss regionMatches() method of String class which is used to check whether two substrings are same or NOT regionMatches() method: This Read More
In this article, we will discuss matches() method of String class which is used to compare invoking string with the specified regex matches() method: This String Read More
In this article, we will discuss how to get length of the String using String’s length() method length() method: This String method is used Read More
In this article, we will discuss different variants of last index of methods to get last occurrence of character/substring using String’s lastIndexOf() method lastIndexOf() Read More
In this article, we will discuss how to join all strings using delimiter specified in the String’s join() method join() method: This String method Read More
In this article, we will discuss how to check whether string is empty or NOT using String’s isEmpty() method isEmpty() method: This String method Read More
In this article, we will discuss intern() method of String class which is used to return interned string intern() method: This String method is used to return Read More
In this article, we will discuss how to convert List into Map in Java 8 Already, in the last article we have discussed how to Read More
In this article, we will discuss how to convert List into Map in Java List v/s Map: Before starting with List to Map conversion, Read More
In this article, we will discuss how to convert Map into List in Java 1.8 version As Map contains key-value pairs which is called Read More
In this article, we will discuss how to convert Map into List in Java As Map contains key-value pairs which is called as Map Read More
In this article, we will discuss how to convert Arrays into List in Java 8 using Streams class Solution (version-wise): Until Java 1.7 version, Read More
In this article, we will discuss various ways to remove duplicate elements from Arrays in Java i.e.; Various ways to remove duplicate elements from Arrays: Read More
In this article, we will discuss how to remove duplicate elements from ArrayList in Java Already, we have discussed in one of the earlier article Read More