Java 8 – How to find common & uncommon elements from 2 Lists ?
In this article, we will discuss how to find and print common & uncommon elements from 2 Lists (or ArrayList) There are different ways to Read More
In this article, we will discuss how to find and print common & uncommon elements from 2 Lists (or ArrayList) There are different ways to Read More
In this article, we will discuss how to sort a HashMap by its Values first and then by its Keys 1. Sorting HashMap by Value Read More
In this article, we will discuss how to find the desired result from the Integer[] arrays for the problem statement given below 1. Problem statement Read More
In this article, we will discuss how to find employee count in every department using Java 8 Stream API Find employee count in each department Read More
In this article, we will discuss how to find and count duplicate values in a Map or HashMap Find & Count duplicate values in a Read More
In this article, we will discuss how to get Keys from Value in Map or Map implemented classes like HashMap, LinkedHashMap or TreeMap using Java Read More
In this article, we will learn how to remove special characters from the given String Remove special characters from given String : Using Java 1.7 Read More
In this article, we will learn how to convert duplicate characters/occurrences to Uppercase letter in a String In one of the previous article, we already Read More
In this article, we will discuss how to convert first character of every word to uppercase using Java 1.8 version In one of the previous Read More
In this article, we will learn how to get all Dates between start Date and end Date using Java 7, Java 8 and Java 9 Read More
In this article, we will discuss how to sort String List by its length in Ascending-order and Descending-order in Java 1.8 version Sorting String List Read More
In this article, we will discuss how to find all shortest Strings in an Arrays and List using Java 8 Stream and Collectors 1. Finding all shortest Strings in a List : Read More
In this article, we will discuss how to find all longest Strings in an Arrays and List using Java 8 Stream and Collectors 1. Finding all longest Strings in a List : Read More
In this article, we will discuss how to remove specific character from a given String using different approaches Remove Character from a given String : Read More
In this article, we will learn how to reverse entire/complete String in Java 1.8 version using Stream and Collectors 1. Reverse using Java 8’s Stream Read More
In this article, we will learn how to reverse each words in a String using different approaches Reverse each words in a String : Reverse Read More
In this article, we will count and print number of repeated character occurrences in a String i.e.; Counting & Printing duplicate character occurrences : Using Java 8 Stream Read More
In this article, we will count and print number of repeated word occurrences in a text file i.e.; Counting & Printing duplicate word occurrences : Using Java 8 Read More
In this article, we will discuss how to split a String using different delimiters and collect to any Collection or List or Set Split a Read More
In this article, we will discuss how to find and count duplicates in an Arrays in different ways Find and count duplicates in an Arrays Read More