Skip to content

Releases: giorgosart/java-string-utils

1.3.0

16 Feb 12:22
Compare
Choose a tag to compare

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

11 Jul 09:51
Compare
Choose a tag to compare

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

12 Jun 10:39
Compare
Choose a tag to compare

Release Notes

Added more methods

  • areAnagram(String firstWord, String secondWord)
  • isPalindrome(String str)
  • reverse(String str)

1.0.0

11 Jun 21:38
Compare
Choose a tag to compare

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)