mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
37 lines
854 B
Go
37 lines
854 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
//
|
|
|
|
package gcmd
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/gogf/gf/v2/text/gstr"
|
|
)
|
|
|
|
// Scan prints `info` to stdout, reads and returns user input, which stops by '\n'.
|
|
func Scan(info ...interface{}) string {
|
|
fmt.Print(info...)
|
|
return readline()
|
|
}
|
|
|
|
// Scanf prints `info` to stdout with `format`, reads and returns user input, which stops by '\n'.
|
|
func Scanf(format string, info ...interface{}) string {
|
|
fmt.Printf(format, info...)
|
|
return readline()
|
|
}
|
|
|
|
func readline() string {
|
|
var s string
|
|
reader := bufio.NewReader(os.Stdin)
|
|
s, _ = reader.ReadString('\n')
|
|
s = gstr.Trim(s)
|
|
return s
|
|
}
|