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.6k Golang : Merge video(OpenCV) and audio(PortAudio) into a mp4 file
+4.6k Javascript : Detect when console is activated and do something about it
+38.1k Golang : Read a text file and replace certain words
+19.3k Golang : Get RGBA values of each image pixel
+52.6k Golang : How to get struct field and value by name
+17.9k Golang : How to make a file read only and set it to writable again?
+9.3k Golang : Create and shuffle deck of cards example
+6.7k Golang : How to determine if request or crawl is from Google robots
+5.7k Swift : Get substring with rangeOfString() function example
+10.7k Golang : Allow Cross-Origin Resource Sharing request
+26.4k Golang : Convert(cast) string to uint8 type and back to string
+17.9k Golang : Iterate linked list example