reader.ReadString が区切り文字を適切に処理しない理由
提供されている Go プログラムでは、reader.ReadString(' を使用するときに問題が発生します。 n') テキスト行を読みます。ユーザーが「Alice」または「Bob」と入力すると、入力テキストに追加の改行文字が含まれるため、指定された区切り文字 (「n」) と不一致が発生します。
解決策: トリムまたは ReadLine を使用
この問題を解決するには、文字列を読み取った後に空白 (改行文字を含む) をトリミングするか、次のいずれかを使用します。 Reader.ReadLine() を直接実行します。
文字列で空白をトリミングする。TrimSpace
package main import ( "bufio" "fmt" "os" "strings" ) func main() { reader := bufio.NewReader(os.Stdin) fmt.Print("Who are you? \n Enter your name: ") text, _ := reader.ReadString('\n') if aliceOrBob(strings.TrimSpace(text)) { fmt.Printf("Hello, ", text) } else { fmt.Printf("You're not allowed in here! Get OUT!!") } }
ReadLine を使用する
package main import ( "bufio" "fmt" "os" ) func main() { reader := bufio.NewReader(os.Stdin) fmt.Print("Who are you? \n Enter your name: ") text, _, _ := reader.ReadLine() if aliceOrBob(string(text)) { fmt.Printf("Hello, ", text) } else { fmt.Printf("You're not allowed in here! Get OUT!!") } }
入力文字列を適切に処理することで、プログラムはユーザーの名前が正しいかどうかを正しく識別できるようになりました。 「アリス」または「ボブ」と答えてください。
以上がGo で `reader.ReadString('\n')` が改行区切り文字を確実に処理できないのはなぜですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。