Skip to content

Instantly share code, notes, and snippets.

@ismits
Created May 10, 2017 18:16
Show Gist options
  • Star 22 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ismits/621a3cff4de582fe860a732e8e10fd41 to your computer and use it in GitHub Desktop.
Save ismits/621a3cff4de582fe860a732e8e10fd41 to your computer and use it in GitHub Desktop.
Is null or empty check in Groovy
if (!someString?.trim()) {
logger.lifecycle("the string is null or empty.")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment