Author: Arpit Mandliya
- 13 May
Read text file line by line in Python
Learn about how to read text file line by line in Python.
- 13 May
Regex Match any character in java
Learn about Regex - Match any character in java using different regex.
- 12 May
Java Set to Array
In this post, we will learn java set to array conversion. There are many ways to convert set to an array. 1. Using Java 8’s Stream If you are using Java 8, I would recommend using Java 8 Stream. [crayon-68c248ec00b57809899039/] Output [John, Martin, Mary] 2. Using toArray() We can directly call toArray() method on set […]