Last active
January 22, 2018 19:47
-
-
Save ajtrichards/b40fe9016997c73b8bec3537cdf4ef3f to your computer and use it in GitHub Desktop.
Convert []byte to string in Golang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func BytesToString(data []byte) string { | |
return string(data[:]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment