Example: How to use TeeReader from IO Package in Golang?
TeeReader returns a Reader that writes to w what it reads from r. All reads from r performed through it are matched with corresponding writes to w.
Example
package main
import (
"bytes"
"io"
"fmt"
"strings"
)
func main() {
testString := strings.NewReader("Jobs, Code, Videos and News for Go hackers.")
var bufferRead bytes.Buffer
example := io.TeeReader(testString, &bufferRead)
readerMap := make([]byte, testString.Len())
length, err := example.Read(readerMap)
fmt.Printf("\nBufferRead: %s", &bufferRead)
fmt.Printf("\nRead: %s", readerMap)
fmt.Printf("\nLength: %d, Error:%v", length, err)
}
Output
BufferRead: Jobs, Code, Videos and News for Go hackers.
Read: Jobs, Code, Videos and News for Go hackers.
Length: 43, Error:
Most Helpful This Week
Example: How to use ReadAtLeast from IO Package in Golang?
URL parser in Golang
Runtime package variables
Subtract N number of Year, Month, Day, Hour, Minute, Second, Millisecond, Microsecond and Nanosecond to current date-time.
How to use Ellipsis (...) in Golang?
How to verify a string only contains letters, numbers, underscores, and dashes in Golang?