Golang : How to delete element(data) from map ?
Problem :
You need to delete some elements from a map.
Such as:
cities := map[string]string{ "city1":"New York", "city2":"Adelaide" };
and remove element "city2" from cities map
Solution :
Use the Golang's builtin function
delete(m, k) // remove element m[k] from map m
For example :
package main
import "fmt"
func main() {
cities := map[string]string{"city1": "New York", "city2": "Adelaide"}
fmt.Println("Before : ", cities) // before delete
delete(cities, "city2")
fmt.Println("After : ", cities) // after delete
}
Output :
Before : map[city1:New York city2:Adelaide]
After : map[city1:New York]
References :
See also : Golang : Check if element exist in 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
+21.9k SSL : How to check if current certificate is sha1 or sha2
+27.3k Golang : Find files by name - cross platform example
+7.6k Golang : Handling Yes No Quit query input
+7.9k Golang : Load DSA public key from file example
+9.7k Javascript : Read/parse JSON data from HTTP response
+30k Golang : Get and Set User-Agent examples
+7k Golang : How to solve "too many .rsrc sections" error?
+6.1k Golang : Experimenting with the Rejang script
+4.8k Linux : sudo yum updates not working
+12.2k Golang : Sort and reverse sort a slice of runes
+9.9k Golang : Resumable upload to Google Drive(RESTful) example
+8.3k Golang : Qt splash screen with delay example