Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tehlers320/9a402afca44e9bfbb7317ee4e1739658 to your computer and use it in GitHub Desktop.
Save tehlers320/9a402afca44e9bfbb7317ee4e1739658 to your computer and use it in GitHub Desktop.
func isASCII(s string) bool {
for i := 0; i < len(s); i++ {
if s[i] > unicode.MaxASCII {
return false
}
}
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment