Recent Posts

Java Compare Strings Best Practice

The java.lang.String class is one of the most used classes in the java world. So applying the best practices regarding strings can have a big impact on your code quality and performance. Comparing...

Java String Split Best Practices

Java split a string into an array of strings The most known way to split a string into an array of strings is split() method. Public String [ ] split ( String delimiter, int limit ) Parameters: ...