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
+10.8k Golang : Read until certain character to break for loop
+25.4k Golang : missing Mercurial command
+13.8k Golang : Simple word wrap or line breaking example
+5.6k Golang : Denco multiplexer example
+15k Golang : Delete certain files in a directory
+7.5k Golang : Example of how to detect which type of script a word belongs to
+7.9k Golang : Metaprogramming example of wrapping a function
+14.9k Golang : How to add color to string?
+6.4k Golang : Warp text string by number of characters or runes example
+5.9k Golang : Get Hokkien(福建话)/Min-nan(閩南語) Pronounciations
+10.4k Golang : Simple File Server