Skip to content

Instantly share code, notes, and snippets.

@ujjwal-kr
Created October 29, 2020 12:10
Show Gist options
  • Save ujjwal-kr/ec1f27f2a94956555f0b7af5a33b2857 to your computer and use it in GitHub Desktop.
Save ujjwal-kr/ec1f27f2a94956555f0b7af5a33b2857 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