I’ve seen people say just create a new slice by appending the old one
*slc = append(*slc[:item], *slc[item+1:]...)
but what if you want to remove the last element in the slice?
If you try to replace
i
(the last element) withi+1
, it returns an out of bounds error since there is noi+1
.
Answer
You can use len()
to find the length and re-slice using the index before the last element:
if len(slice) > 0 {
slice = slice[:len(slice)-1]
}
Attribution
Source : Link , Question Author : sourcey , Answer Author : Simon Whitehead