Golang : How to filter a map's elements for faster lookup
A short tutorial on how to filter map elements. Map is a hash table equivalent in Golang and very useful for doing fast lookup. However, there are times we need to "scale" down the number of elements in a map for a "faster" lookup(smaller set to search). One way to do this is to filter out the elements that we need or don't need.
Below is an example code on how to filter elements out from a map.
Here you go!
package main
import (
"fmt"
"strings"
)
func main() {
hostings := map[int]string{0: "digitalocean.com",
1: "linode.com",
2: "azure.com",
3: "aws.amazon.com",
4: "heroku.com"}
fmt.Println("Before filtering :")
fmt.Println("-------------------------")
for number, company := range hostings {
fmt.Println("Number : ", number, "Company : ", company)
}
fmt.Println("\n\nFilter by index number. Need to know index number in advance :")
fmt.Println("-------------------------")
companyName, ok := hostings[3] // select index number 3
if ok {
fmt.Println("Hosting company name : ", companyName)
} else {
fmt.Println(companyName + " not found")
}
// filter aws.amazon.com from the hostings map
fmt.Println("\n\nFilter map elements by name :")
fmt.Println("-------------------------")
for number, company := range hostings {
if strings.EqualFold(strings.ToLower(company), "aws.amazon.com") {
fmt.Printf("[%d] : %s\n", number, company)
}
}
// filter company names that contain the character "u" from the hostings map
fmt.Println("\n\nFilter map elements by a single character :")
fmt.Println("-------------------------")
for number, company := range hostings {
if strings.Contains(strings.ToLower(company), "u") {
fmt.Printf("[%d] : %s\n", number, company)
}
}
}
Sample output:
Before filtering :
-------------------------
Number : 3 Company : aws.amazon.com
Number : 4 Company : heroku.com
Number : 0 Company : digitalocean.com
Number : 1 Company : linode.com
Number : 2 Company : azure.com
Filter by index number. Need to know index number in advance :
-------------------------
Hosting company name : aws.amazon.com
Filter map elements by name :
-------------------------
3 : aws.amazon.com
Filter map elements by a single character :
-------------------------
4 : heroku.com
2 : azure.com
References:
https://www.socketloop.com/tutorials/golang-of-hash-table-and-hash-map
https://www.socketloop.com/tutorials/golang-check-if-element-exist-in-map
https://www.socketloop.com/tutorials/golang-how-to-check-if-a-string-contains-another-sub-string
https://www.socketloop.com/tutorials/golang-remove-characters-from-string-example
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
+12.4k Golang : Transform comma separated string to slice example
+6.3k Golang : Map within a map example
+32.8k Delete a directory in Go
+22.3k Generate checksum for a file in Go
+13.9k Golang : Chunk split or divide a string into smaller chunk example
+4.1k Golang : Converting individual Jawi alphabet to Rumi(Romanized) alphabet example
+14.9k Golang : Get all local users and print out their home directory, description and group id
+13.7k Golang: Pad right or print ending(suffix) zero or spaces in fmt.Printf example
+9.4k Golang : How to generate Code 39 barcode?
+17.8k Golang : Check if a directory exist or not
+8.2k Golang : Ackermann function example