1 Star 0 Fork 0

GarlicBoris / gozero-utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
array.go 251 Bytes
一键复制 编辑 原始数据 按行查看 历史
yanwc 提交于 2023-02-26 21:33 . feat:实用工具
package utils
// DelStringByElement 删除数组中的元素
func DelStringByElement(array []string, element string) ([]string, error) {
var j int
for _, e := range array {
if e != element {
array[j] = e
j++
}
}
return array[:j], nil
}
Go
1
https://gitee.com/yanwc/gozero-utils.git
git@gitee.com:yanwc/gozero-utils.git
yanwc
gozero-utils
gozero-utils
v1.0.5

搜索帮助

53164aa7 5694891 3bd8fe86 5694891