Skip to content

Instantly share code, notes, and snippets.

@ykws
Created October 31, 2016 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ykws/79e478a1decd36a3553c9281cdf9c329 to your computer and use it in GitHub Desktop.
Save ykws/79e478a1decd36a3553c9281cdf9c329 to your computer and use it in GitHub Desktop.
String#split return empty array with empty values
String str = ",,,";
String[] arrays = str.split(",");
# arrays => []
# arrays.length => 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment