Golang : How to check for empty array string or string?
Sometimes that most obvious thing can be the hardest to remember. Putting this down as a note for myself and maybe useful to you too.
Problem :
Need to check if a string or []string is empty. How to do that?
Solutions :
if str is a string
len(strings.TrimSpace(str)) == 0
and let say str is an array []string
var str []string
strings.TrimSpace(strings.Join(str, "")) == ""
Reference :
https://groups.google.com/forum/#!topic/golang-nuts/7Ks1iq2s7FA
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+20.1k Android Studio : AlertDialog and EditText to get user string input example
+16.2k Golang : Delete files by extension
+12.1k Elastic Search : Return all records (higher than default 10)
+29k Golang : Save map/struct to JSON or XML file
+7k Golang : How to fix html/template : "somefile" is undefined error?
+7.7k Golang : Grayscale Image
+4.6k Fix Google Analytics Redundant Hostnames problem
+30.1k Golang : Generate random string
+12.3k Golang : Sort and reverse sort a slice of bytes
+8.6k Golang : GMail API create and send draft with simple upload attachment example
+6.5k Golang : Output or print out JSON stream/encoded data
+12.3k Android Studio : Highlight ImageButton when pressed on example