The ThreadsThe Main Thread Every process has at least one thread called the main thread. Java provides us with the Threads class to interact with threads. To get the current thread we can use a static method defined in the Thread class called the .currentThread...Aug 20, 2024·12 min read·21
RegEx - Regular Expression (part 1 of 2)Basics of RegEx The regular expression, commonly referred to as RegEx, is a technique or language for expressing text patterns using some text symbols. We can write and supply regex to a regex engine to either check or extract the substrings that mat...May 8, 2023·5 min read·61
Hashnode Bootcamp Recap - 3 hours in 11 minHashnode Bootcamp '23 was held from May 1st through May 3rd. The entire bootcamp was of around 3 hours. If you were unable to attend the BootCamp, don't worry, I have your back. Here is the recap of the entire bootcamp. Dani Passos hosted the entire ...May 3, 2023·11 min read·57
Everything you need to know about "Strings" in JavaOverview Introduction Creating a String Operations on Strings StringBuffer & StringBuilder Top 10 Problems on Strings Introduction A String is nothing but just a sequence of characters. A Character may be an alphabet, a digit or any other cha...Mar 13, 2023·8 min read·184