reader 字符串
In Go, how to create a Reader from a string? Many APIs use a Reader as its input.
在Go中,如何从字符串创建Reader ? 许多API使用阅读器作为输入。
In Go, the
在Go中,
strings.NewReader(s)
library function creates a Reader from a string.
库函数根据字符串创建一个Reader。
Check the doc at: https://golang.org/pkg/strings/#NewReader
在以下位置检查文档: https : //golang.org/pkg/strings/#NewReader
Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。
翻译自: https://www.systutorials.com/how-to-create-a-reader-from-a-string-in-go/
reader 字符串