Golang : Get input from keyboard
Writing text-based program to run from command line will not be completed without the ability to read input from the keyboard. Be it a single character or a string. Golang has three functions just to deal with this kind of situation. First is the fmt.Scanln() function, followed by fmt.Scan() function and fmt.Scanf() function.
Below is an example of fmt.Scanf() function
package main
import (
"fmt"
)
func main() {
var response int
fmt.Println("This program will activate SkyNet worldwide, are you sure about this?\n")
fmt.Scanf("%c", &response) //<--- here
switch response {
default:
fmt.Println("SkyNet launch aborted!")
case 'y':
fmt.Println("SkyNet launched")
case 'Y':
fmt.Println("SkyNet launched")
}
}
Hope this tutorial can help you out.
See also : Golang : Read input from console line
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
+7.1k Golang : Example of custom handler for Gorilla's Path usage.
+9.2k Golang : Changing a RGBA image number of channels with OpenCV
+5.5k Golang : Struct field tags and what is their purpose?
+10.2k Generate Random number with math/rand in Go
+22k Golang : Read directory content with filepath.Walk()
+7.6k Javascript : How to check a browser's Do Not Track status?
+9.6k Golang : Function wrapper that takes arguments and return result example
+6.7k Golang : Decode XML data from RSS feed
+38.8k Golang : How to iterate over a []string(array)
+30.1k Golang : Generate random string
+13.4k Golang : Tutorial on loading GOB and PEM files