Author: Arpit Mandliya
 20 September 20 September- Print Unicode Character in Python- 1. Introduction Handling Unicode characters is a critical aspect of modern programming, especially in a globalized environment where software applications need to support multiple languages and character sets. Python, being a widely-used language, provides several methods to handle and display Unicode characters. This article will explore these methods in both Python 2 and Python 3, […] 
 19 September 19 September- Convert Month Name to Number in Java- In this post, we will see how to convert Month name to number in Java. Please note that we will use first three letter of month name (First letter as capital) to convert it to Number. There are multiple ways to convert month name to number in java. Let’s go through. Using DateTimeFormatter and TemporalAccessor […] 
 19 September 19 September- Count Number of Decimal Places in Java- In this post, we will see how to count number of decimal places in java. A Double can not have exact representation, you need to convert it to String to count number of decimal places in Java. There are multiple ways to count number of decimal places in java. Let’s go through them. Using String’s […] 
 18 September 18 September- [Fixed] IllegalArgumentException: Bound must be positive- In this post, we will see how to fix IllegalArgumentException: Bound must be positive in java. You will generally get this exception while generating random numbers using Random.nextInt() method. If you pass bound as 0 or less than 0, then you will get the exception. Let’s understand with the help of example: [crayon-690473599bca9341367986/] When you […] 
 17 September 17 September- Create List with One Element in Java- In this post, we will see how to create List with One Element in java.. Using Collections.singletonList() This is best way to create List with single element if you need an immutable List. [crayon-690473599bdb2567790542/] Output [crayon-690473599bdb5032063396/] If you try to add element to the list, you will get exception [crayon-690473599bdb7774058128/] [crayon-690473599bdb8629997739/] Using Array.asList() method [ […] 
 17 September 17 September- Replace null with Empty String in Java- 1. Introduction to the Problem Statement In Java development, handling null values effectively is crucial, especially when dealing with strings. A common requirement is to replace null strings with empty strings to avoid NullPointerException and maintain the flow of the application. If the given string is null, the output should be an empty string; otherwise, the […] 
 17 September 17 September- How to Get String Between Two Characters in Java- In this post, we will see How to get String between two characters in java. Ways to get String between two characters in java. There are multiple ways to How to get String between two characters in java Using String’s substring() method To get String between two characters in java, use String’s substring() method. Find […] 
 17 September 17 September- Check if Date Is Weekend or Weekday in Java- In this post, we will see how to check if Date is weekend or weekday in Java. Please note that we will consider Saturaday/Sunday as weekend and rest five days of week as weekdays. Using LocalDate’s getDayOfWeek() method We can use LocalDate’s getDayOfWeek() method to check if given date is weekend or weekday in Java. […] 
 16 September 16 September- How to Remove Extension from Filename in Java- In this post, we will see how to remove extension from filename in java. Ways to Remove extension from filename in java There are multiple ways to remove extension from filename in java. Let’s go through them. Using substring() and lastIndexOf() methods You can first find last index of dot(.) using String’s lastIndexOf() method and […] 
