Golang : Convert(cast) io.Reader type to string
Problem :
You have input of type io.Reader and you need to convert the input to string type.
Solution :
First, create a buffer and use the buffer's ReadFrom()
function to read/parse the io.Reader input. Next, assign the buffer's string value to a string variable.
For example :
// convert io.Reader type to string
var msg io.Reader
...
buffer := new(bytes.Buffer)
buffer.ReadFrom(msg.Body)
str := buffer.String()
fmt.Println(str)
See full example at : https://www.socketloop.com/references/golang-net-mail-message-type-and-readmessage-function-example
References :
https://www.socketloop.com/tutorials/golang-convert-cast-bytes-to-string
https://www.socketloop.com/references/golang-net-mail-message-type-and-readmessage-function-example
See also : Golang : convert(cast) bytes to string
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.4k Golang : Set horizontal, vertical scroll bars policies and disable interaction on Qt image
+14.2k Golang : Recombine chunked files example
+4.5k Mac OSX : Get disk partitions' size, type and name
+29.2k Golang : JQuery AJAX post data to server and send data back to client example
+11k Golang : Web routing/multiplex example
+5.3k Golang : Get S3 or CloudFront object or file information
+13.7k Golang : Get dimension(width and height) of image file
+11.8k Golang : How to parse plain email text and process email header?
+13.9k Golang : concatenate(combine) strings
+18.3k Golang : Logging with logrus
+8k Golang : How To Use Panic and Recover
+9.6k Golang : Detect number of active displays and the display's resolution