Java 11 — isEmpty() vs isBlank()

Stuti Jain
Mar 30, 2021

Got stuck with checking tabs & new lines

  • String isBlank() is used to test if the string is empty or contains only white space characters.
  • String.isBlank() does not check length of string
  • String isEmpty() is used to test if the string is empty.
  • String.isEmpty() checks length of string

--

--