Golang : Sort and reverse sort a slice of strings
Sometimes we will want to sort or reverse sort a collection of strings alphabetically. It is pretty easy to sort a slice of strings in Go. Just declare the slice as type sort.StringSlice
and use the Sort
method.
Here’s an example of sorting slice of Strings in Go.
package main
import (
"fmt"
"sort"
)
var strSlice sort.StringSlice = []string{"apple", "durian", "kiwi", "banana"}
func main() {
fmt.Println("Original : ", strSlice[:])
strSlice.Sort()
fmt.Println("Sort : ", strSlice[:])
sort.Sort(sort.Reverse(strSlice[:]))
fmt.Println("Reverse : ", strSlice[:])
}
Output :
Original : [apple durian kiwi banana]
Sort : [apple banana durian kiwi]
Reverse : [kiwi durian banana apple]
See also : Golang : Sort and reverse sort a slice of integers
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
+6.6k Golang : Reverse by word
+4.2k Javascript : How to show different content with noscript?
+12.3k Golang : Search and extract certain XML data example
+44.6k Golang : Use wildcard patterns with filepath.Glob() example
+12.6k Swift : Convert (cast) Int or int32 value to CGFloat
+14.4k Golang : Find network of an IP address
+13.2k Golang : Generate Code128 barcode
+16.3k CodeIgniter/PHP : Create directory if does not exist example
+17.9k Golang : Get all upper case or lower case characters from string example
+11.2k Golang : Post data with url.Values{}
+13.3k Golang : Increment string example
+19.1k Mac OSX : Homebrew and Golang