Releases: giorgosart/java-string-utils
Releases · giorgosart/java-string-utils
1.3.0
Release Notes
Enhancements
- Added the methods below:
- defaultString(String str, String[] array)
- randomString(String[] array)
- toSnakeCase(String str)
- Improved documentation and test coverage
Bug Fixes
- Fixed an issue with the
areAnagrams
method where it was performing a case sensitive check for the two words passed in
1.2.0
Release Notes
Added the below methods
- contains(String, String)
- contains(String, String, Boolean)
- length(String)
- truncate(String, Integer, String, Boolean, String)
- toKebabCase(String)
1.1.0
Release Notes
Added more methods
- areAnagram(String firstWord, String secondWord)
- isPalindrome(String str)
- reverse(String str)
1.0.0
Release Notes
Initial release to maven with the utility methods below
- isBlank(String str)
- isEmpty(String str)
- defaultText(String str, String defaultText)
- truncate(String str, int lengthToShow)
- truncate(String str, int lengthToShow, trimPosition)