Golang : How to verify input is rune?
Problem :
You need to determine if the user input is a valid rune. How to do that?
Solution :
Use unicode/utf8.Valid()
function to check if the user input is a valid rune.
For example,
package main
import (
"fmt"
"unicode/utf8"
)
func main() {
valid := []byte("Hello, 世界")
invalid := []byte{0xff, 0xfe, 0xfd}
fmt.Println(utf8.Valid(valid))
fmt.Println(utf8.Valid(invalid))
}
Output :
true
false
NOTE :
Depending on the input stream type, use utf8.Valid()
for handling byte array, utf8.ValidRune()
is for handling single rune and use utf8.ValidString()
for handling string.
References :
https://golang.org/pkg/unicode/utf8/#Valid
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+18.3k Golang : Write file with io.WriteString
+8.6k Golang : HTTP Routing with Goji example
+6.7k Golang : Normalize email to prevent multiple signups example
+9.9k Golang : Use regular expression to get all upper case or lower case characters example
+8k Golang : Auto-generate reply email with text/template package
+14.3k Golang : Find network of an IP address
+8k Swift : Convert (cast) Character to Integer?
+6.6k Default cipher that OpenSSL used to encrypt a PEM file
+7.5k Gogland : Where to put source code files in package directory for rookie
+11.5k Golang : Convert(cast) float to int
+17.2k Golang : Linked list example
+7.2k Golang : Create zip/ePub file without compression(use Store algorithm)