Skip to content

Instantly share code, notes, and snippets.

@ajtrichards
Last active January 22, 2018 19:47
Show Gist options
  • Save ajtrichards/b40fe9016997c73b8bec3537cdf4ef3f to your computer and use it in GitHub Desktop.
Save ajtrichards/b40fe9016997c73b8bec3537cdf4ef3f 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