Skip to content

Instantly share code, notes, and snippets.

@farhany
Created April 18, 2018 22:57
Show Gist options
  • Save farhany/648820618314d2db1012f718e028371f to your computer and use it in GitHub Desktop.
Save farhany/648820618314d2db1012f718e028371f to your computer and use it in GitHub Desktop.
Convert []byte to string in Golang
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