Golang之一个简单的聊天机器人

翠花,上代码

package main

import (
    "bufio"
    "fmt"
    "os"
    "strings"
)

func main() {
    //从标准输入读取数据
    inputReader := bufio.NewReader(os.Stdin)
    fmt.Println("Please input your name:")
    //读取数据直到遇见
位置
    input, err := inputReader.ReadString('
')
    if err != nil {
        fmt.Printf("An error occurred:%s
", err)
        //异常错误后退出
        os.Exit(1)

    } else {
        //用切片操作删除最后的

        name := input[:len(input)-1]
        fmt.Printf("Hello,%s!What can i di for you?
", name)
    }
    for {
        input, err = inputReader.ReadString('
')
        if err != nil {
            fmt.Printf("An error occurred:%s
", err)
            continue
        }
        input = input[:len(input)-1]
        //全部转换为小写
        input = strings.ToLower(input)
        switch input {
        case "":
            continue
        case "nothing", "bye":
            fmt.Println("Bye!")
            //正常退出
            os.Exit(0)
        default:
            fmt.Println("Sorry,I didn't catch you.")

        }
    }
}
原文地址:https://www.cnblogs.com/pyyu/p/8203550.html