Java 8 – How to Reverse a String in place ?
In this article, we will see how to reverse a String in place using traditional & Java 8 Stream approaches 1. Traditional approach : ReverseStringInPlace.java Read More
In this article, we will see how to reverse a String in place using traditional & Java 8 Stream approaches 1. Traditional approach : ReverseStringInPlace.java Read More
In this article, we will learn how to iterate over char[] Arrays in different ways Iterate over char[] Arrays : Using Java 8 Stream.chars() method Read More
In this article, we will learn how to count length of last word in a String using String‘s length() method Count length of Last word 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 understand with a Java program on how to find hashCode of a String using Java 1.8 version Already in one Read More
In this article, we will understand with a Java program on how to find First & Last index of particular character or sub-string in a Read More
In this article, we will discuss how to sort String[] Arrays by its length in Ascending-order and Descending-order in Java 1.8 version Sorting String[] Arrays Read More
In this article, we will discuss how to sort String[] Arrays by its length in Ascending-order and Descending-order Sorting String[] Arrays by its length: Using 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 find all longest Strings in an Arrays and List using Java 1. Finding all shortest Strings in List or ArrayList : A List contains multiple Strings where some String Read More
In this article, we will discuss how to find all longest Strings in an Arrays and List using Java 1. Finding all longest Strings in List or ArrayList : A List contains Read More
In this article, we will discuss how to find third shortest String in an Arrays and List using Java 8 Stream 1. Finding Third Shortest String in an Arrays: We will follow Read More
In this article, we will discuss how to find third longest String in an Arrays and List using Java 8 Stream 1. Finding Third Longest String in an Arrays: We will follow 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 discuss how to merge or concatenate 2 Arrays of same type using Java 8 Stream API. Already in the previous Read More
In this article, we will discuss how to merge or concatenate 2 Arrays of same type. In one of the previous article, we already discussed Read More
In this article, we will see how to sort list and Array of objects with null values present Generally, sorting any List/Array which contains one/more Read More
In this article, we will see how to find duplicate in String[] Arrays Finding duplicates in String[] Arrays : Check duplicates present or not ? Read More
In this article, we will discuss how to merge two arrays and then sort according to natural order i.e.; ascending order. Well, by passing Comparator Read More