Golang : Reverse a string with unicode
Problem :
You got a string of :
世界你好! is the equivalent of Hello World! in Chinese
and you need to reverse this string.
Solution :
Use unicode/utf8
package to handle the runes and reverse the string with this program below :
package main
import (
"fmt"
"unicode/utf8"
)
var forward string = "世界你好! is the equivalent of Hello World! in Chinese"
func Reverse(s string) string {
totalLength := len(s)
buffer := make([]byte, totalLength)
for i := 0; i < totalLength; {
r, size := utf8.DecodeRuneInString(s[i:])
i += size
utf8.EncodeRune(buffer[totalLength-i:], r)
}
return string(buffer)
}
func main() {
fmt.Println("Original : ", forward)
backward := Reverse(forward)
fmt.Println("Reversed : ", backward)
}
Output :
Original : 世界你好! is the equivalent of Hello World! in Chinese
Reversed : esenihC ni !dlroW olleH fo tnelaviuqe eht si !好你界世
Hope this reverse function can be useful to you.
See also : Golang : Sort and reverse sort a slice of strings
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
+16.2k Golang : Check if a string contains multiple sub-strings in []string?
+7.1k Golang : Null and nil value
+13.9k Golang : Fix image: unknown format error
+7.2k Golang : Word limiter example
+5.9k Golang : Grab news article text and use NLP to get each paragraph's sentences
+11.1k Golang : Intercept and process UNIX signals example
+10.1k Golang : How to check if a website is served via HTTPS
+33.5k Golang : All update packages with go get command
+12.9k Golang : Calculate elapsed years or months since a date
+9.3k Facebook : Getting the friends list with PHP return JSON format
+13k Golang : Handle or parse date string with Z suffix(RFC3339) example
+13.1k Golang : Linear algebra and matrix calculation example