Home >Backend Development >Golang >How Can I Remove Invalid UTF-8 Characters in Go?
When working with JSON data, it's possible to encounter invalid UTF-8 characters, leading to errors during Marshaling. This issue arises due to the presence of bytes that don't conform to the UTF-8 encoding.
In Go, you can address this problem by removing or replacing invalid characters using various approaches:
strings.ToValidUTF8("a\xc5z", "")
fixUtf := func(r rune) rune { if r == utf8.RuneError { return -1 } return r } fmt.Println(strings.Map(fixUtf, "a\xc5z")) fmt.Println(strings.Map(fixUtf, "posic�o"))
This function removes any invalid UTF-8 characters by mapping them to a negative value, resulting in the expected output:
az posico
The above is the detailed content of How Can I Remove Invalid UTF-8 Characters in Go?. For more information, please follow other related articles on the PHP Chinese website!