Java StringJoiner Class: Simplify String Concatenation

Java 8 introduced a new utility class called StringJoiner, which provides a convenient and expressive way to join strings together […]

Continue reading...

Java 11- New Methods of String Class

Java 11 (JDK 11) added a few new utility methods in the String class. These utility methods will reduce the […] Continue reading »

Shortcut key for Extract Local Variable in Eclipse/STS

Alt + Shift + L are the shortcut keys to extract/assigned a piece of code to a local variable in […] Continue reading »

IntelliJ IDEA shortcut for Extract/Introduce Local Variable

In IntelliJ IDEA, Ctrl + Alt + V for Windows/Linux and ⌘⌥V for macOS is the shortcut key to extract […] Continue reading »

Java 8 Stream filter() Method Example

filter() method introduced in the Stream interface of Java 8 version under the package java.util.stream. filter() method is an Intermediate […] Continue reading »

Java 8 Stream API allMatch(), anyMatch() and noneMatch() method Example

On this page, we will learn about Java 8 Stream API allMatch(), anyMatch() and noneMatch() method with an example. allMatch(), […] Continue reading »

Capitalize the first letter of each word in a String using Java

On this page, we will learn how to capitalize the first letter of each word in a String using Java. […] Continue reading »

Java – Capitalize the first letter of a String

In this short tutorial, you will get an idea of how to capitalize the first letter of a string. In […] Continue reading »

Spring Boot- Disable Spring banner at startup

In your Spring Boot application, you can disable the Spring logo banner at the startup of the application. It can […] Continue reading »

How to convert the first letter of a String to lowercase in PHP

In PHP, lcfirst(string $string) is the inbuilt function to convert the first letter of a String to lowercase. And lcfirst(string […] Continue reading »

How to capitalize the first letter of a String in PHP

In PHP, we can use the inbuild ucfirst(string $string) function to convert the first character of a string to uppercase. ucfirst(string […] Continue reading »

How to install Apache 2.4 and PHP 8 on a Windows Machine

In this tutorial, you will learn how to install and configure Apache 2.4 and PHP 8 on a Windows machine. […] Continue reading »

1 12 13 14 15 16 45