Golang : How to iterate over a []string(array)
Sometimes the easiest thing to do is the hardest thing to remember... like how to iterate through a string array. :P
This is a simple for loop tutorial showing how to iterate over the values inside []string or any kind of arrays.
package main
import (
"fmt"
)
func main() {
// taken from http://www.asitis.com/16/
divineValues := []string{
"fearlessness",
"purification of one's existence",
"cultivation of spritual knowledge",
"charity",
"self-control",
"performance of sacrifice",
"study of the Vedas",
"austerity and simplicity",
"non-violence",
"truthfulness",
"freedom from anger",
"renunciation",
"tranquility",
"aversion to faultfinding",
"compassion and freedom from covetousness",
"gentleness",
"modesty and steady determination",
"vigor",
"forgiveness",
"fortitude",
"cleanliness",
"freedom from envy and the passion for honor",
}
for index, each := range divineValues {
fmt.Printf("Divine value [%d] is [%s]\n", index, each)
}
}
See also : Golang : Iterating Elements Over A List
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
+10.9k Android Studio : Checkbox for user to select options example
+16.3k Golang : How to extract links from web page ?
+27.3k Golang : Find files by name - cross platform example
+12.1k Golang : Find and draw contours with OpenCV example
+16.5k Golang : Send email and SMTP configuration example
+10.9k Golang : Command line file upload program to server example
+9.5k Golang : Convert(cast) string to int64
+6.9k Android Studio : Hello World example
+20.9k PHP : Convert(cast) int to double/float
+10.5k Swift : Convert (cast) String to Integer
+9.4k Golang : Generate EAN barcode
+6.3k Golang : Calculate US Dollar Index (DXY)