Skip to content

Instantly share code, notes, and snippets.

@bscott
Created June 25, 2017 02:54
Show Gist options
  • Select an option

  • Save bscott/f98efaf15993d21df091e700579c867b to your computer and use it in GitHub Desktop.

Select an option

Save bscott/f98efaf15993d21df091e700579c867b to your computer and use it in GitHub Desktop.
Go Func's
// my own helper functions
func trimQuotes(s string) string {
if len(s) >= 2 {
if s[0] == '"' && s[len(s)-1] == '"' {
return s[1 : len(s)-1]
}
}
return s
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment