Golang : Check if item is in slice/array
Problem :
You need to see if an item is inside a slice or array.
Solution :
Golang does not have any builtin function to do this for the moment(March 2015). You have to write a function to iterate over the list and check if the item exist or not in the list.
package main
import (
"fmt"
)
func printslice(slice []string) {
fmt.Println("slice = ", slice)
//for i := range slice {
// fmt.Println(i, slice[i])
//}
}
func stringInSlice(str string, list []string) bool {
for _, v := range list {
if v == str {
return true
}
}
return false
}
func main() {
strList := []string{"Hello", "World", "GoodBye", "World", "We", "Love", "Love", "You"}
printslice(strList)
if !stringInSlice("Save", strList) {
fmt.Println("The word Save is not in the list!")
}
if stringInSlice("Love", strList) {
fmt.Println("The word Love is in the list!")
}
}
Output :
slice = [Hello World GoodBye World We Love Love You]
The word Save is not in the list!
The word Love is in the list!
See also : Golang : Delete duplicate items from a slice/array
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
+9.1k Golang : How to use Gorilla webtoolkit context package properly
+9k Golang : Accept any number of function arguments with three dots(...)
+9.5k Golang : Web(Javascript) to server-side websocket example
+52.7k Golang : How to get struct field and value by name
+8.9k Android Studio : Image button and button example
+15.7k Golang : Convert date format and separator yyyy-mm-dd to dd-mm-yyyy
+9.4k Golang : How to protect your source code from client, hosting company or hacker?
+4.8k MariaDB/MySQL : Form select statement or search query with Chinese characters
+5.7k Fix fatal error: evacuation not done in time problem
+19.9k Golang : Append content to a file
+9.1k Golang : Go as a script or running go with shebang/hashbang style
+7.7k SSL : How to check if current certificate is sha1 or sha2 from command line