DEV Community

Cover image for Go from the beginning - reading user input
Chris Noring for Microsoft Azure

Posted on

Go from the beginning - reading user input

TLDR; you will learn how to read user input, both a simpler technique and a more advanced one using formatters

It's an important thing to be able to read user input from the console. It gives the user a chance to interact with the program. Things to consider is how you are asking the user to input, is it one word, several inputs. Will the user separate input by space or newline? Regardless of what approach you go with, try to communicate the chosen approach to the user.

Managing user input with fmt

So far, you've seen how the fmt package can be used to print to the console. It can also be used to read user input.

The fmt library has a built-in Scan() method that we will use to capture the user input.

Reading one input

You might start out wanting to read one input from the user. That's what the Scan() method does by default.

Here's some code showing how to collect user input:

package main

import "fmt"

func main() {
    var response string
    fmt.Scan(&response)
    fmt.Println("User typed: ", response)
}
Enter fullscreen mode Exit fullscreen mode

Note how you send in the string response as a reference, using the & operator. It's done this way as the Scan() method will modify the variable you send in.

When you run this code, you will see the below output:

hello
User typed: hello
Enter fullscreen mode Exit fullscreen mode

Reading multiple inputs

You can provide several arguments to the Scan() method. By providing several arguments, you can collect more than one user input and separate each input, in the Scan() function, with a comma. Here's how to apply this technique:

var a1, a2 string
// multiple input
fmt.Scan(&a1, &a2)

// formatted string to print out the user input
str := fmt.Sprintf("a1: %s a2: %s", a1, a2)
Enter fullscreen mode Exit fullscreen mode

Note how a1 and a2 is sent into Scan() and they are comma separated. So how will those code run?

When you run this code, there's two ways for the user to input. The user can either separate the values by space like so:

hi you
a1: hi a2: you
Enter fullscreen mode Exit fullscreen mode

or by newline:

hi 
you
a1: hi a2: you
Enter fullscreen mode Exit fullscreen mode

Scanf(), scan the input with formatters

So far, you've seen how you can collect input with spaces and endlines as separators. You can also be very specific in how you collect input. Imagine that the user wants to type in an invoice number like so "INV200" or "INV114" and what you are interested in is the number part, or maybe you are interested in the prefix as well?

The answer to solving this is in the Scanf() function. It takes formatters. With formatters, you're able to pick the part of the user input you are interested in, and place that into the variable you want.

In the above-mentioned case, you can construct code looking like so:

var prefix string
var no int
// in110
fmt.Scanf("%3s%d", &prefix, &no)
fmt.Printf("prefix: %s, invoice no: %d", prefix, no)
Enter fullscreen mode Exit fullscreen mode

The interesting part lies in the first argument of Scanf(), namely 3s%d. What the means is, take the first 3 characters, %3s and interpret as a string. Then interpret and place the remaining as a number, %d.

Running this program, you will get an output like so:

inv200
prefix: inv, invoice no: 200
Enter fullscreen mode Exit fullscreen mode

"inv" is placed in prefix and 200 in no variable.

 Learn more

To learn more about this are, check out this link https://pkg.go.dev/fmt#Scanf

Summary

In this article, you learned how to read user input. You also looked at a more advanced technique using formatters.

Top comments (0)