Skip to content

Instantly share code, notes, and snippets.

@sunho
Created January 15, 2018 22:35
Show Gist options
  • Save sunho/1b8c5a7a5011f314953a2b01761e81b6 to your computer and use it in GitHub Desktop.
Save sunho/1b8c5a7a5011f314953a2b01761e81b6 to your computer and use it in GitHub Desktop.
str, ok := value.(string)
if ok {
fmt.Printf("string value is: %q\n", str)
} else {
fmt.Printf("value is not a string\n")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment