How to create a Reader from a string in Go?

In Go, how to create a Reader from a string? Many APIs use a Reader as its input.

In Go, the

strings.NewReader(s)

library function creates a Reader from a string.

Check the doc at: https://golang.org/pkg/strings/#NewReader

Eric Ma

Eric is a systems guy. Eric is interested in building high-performance and scalable distributed systems and related technologies. The views or opinions expressed here are solely Eric's own and do not necessarily represent those of any third parties.

Leave a Reply

Your email address will not be published. Required fields are marked *