Golang : Fix - does not implement sort.Interface (missing Len method)
Problem:
You are trying to use the sort.Sort()
or sort.Reverse()
functions on type []string
data but encounter this error message:
cannot use strSlice (type []string) as type sort.Interface in argument to sort.Sort: []string does not implement sort.Interface (missing Len method)
What's going on and how to fix this?
Solution:
Cast the []string
slice/array to type StringSlice or if you are dealing integer or float - cast to IntSlice or Float64Slice type first before using the sort.Sort()
function.
To cast/convert the []string
slice/array, use sort.StringSlice()
function.
For example:
package main
import (
"fmt"
"sort"
"strings"
)
func main() {
str := "Dog,Apple,Cat,Boy"
strSlice := strings.Split(str, ",")
fmt.Println("Before : ", strSlice)
sortableStrSlice := sort.StringSlice(strSlice) <------- here!
sort.Sort(sortableStrSlice)
fmt.Println("After : ", sortableStrSlice)
}
Output:
Before : [Dog Apple Cat Boy]
After : [Apple Boy Cat Dog]
Happy coding!
See also : Golang : Reverse IP address for reverse DNS lookup example
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 : Delete files by extension
+21.8k Golang : How to run Golang application such as web server in the background or as daemon?
+14.2k Golang : GUI with Qt and OpenCV to capture image from camera
+6.3k Golang : Convert an executable file into []byte example
+9.6k Golang : Function wrapper that takes arguments and return result example
+12.9k Golang : Convert(cast) int to int64
+7.6k Javascript : How to check a browser's Do Not Track status?
+11.6k Golang : Setup API server or gateway with Caddy and http.ListenAndServe() function example
+16.1k Golang : Execute terminal command to remote machine example
+35.6k Golang : Save image to PNG, JPEG or GIF format.
+15.7k Golang : Get file permission