Golang : Check if element exist in map
Key based element search on a map is the most frequent method use to retrieve the associated value. However, there are times when a search will fail and cause panic if the element is not in the map at the first place. The codes below will show you how to check if an element exist in a map or not.
package main
import "fmt"
func main() {
cities := map[string]string{"city1": "New York", "city2": "Portland"}
// ok is boolean
value, ok := cities["city2"] // return value if found or ok=false if not found
if ok {
fmt.Println("value: ", value)
} else {
fmt.Println("key not found")
}
// try something else
if value, ok = cities["city3"]; ok {
fmt.Println("value: ", value)
} else {
fmt.Println("key not found")
}
}
Output :
value: Portland
key not found
Reference :
See also : Golang : How to delete element(data) from map ?
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
+4.4k Golang : What is StructTag and how to get StructTag's value?
+17.5k Golang : Determine if directory is empty with os.File.Readdir() function
+5.3k Golang : Totalize or add-up an array or slice example
+15.2k Golang : Iterate linked list example
+5.5k PHP : Shuffle to display different content or advertisement
+9.6k Golang : How to pipe input data to executing child process?
+8.7k Golang : Get login name from environment and prompt for password
+12.2k Golang : Tutorial on loading GOB and PEM files
+3.6k Golang : A program that contain another program and executes it during run-time
+4.6k Unix/Linux : Get reboot history or check when was the last reboot date
+33k Golang : Validate IP address