2020-10-15 16:41:32 +08:00
|
|
|
|
package utils
|
|
|
|
|
|
|
2020-11-20 21:59:12 +08:00
|
|
|
|
import (
|
|
|
|
|
|
"strings"
|
2024-07-27 15:42:58 +08:00
|
|
|
|
|
|
|
|
|
|
"github.com/iwind/TeaGo/types"
|
2020-11-20 21:59:12 +08:00
|
|
|
|
)
|
2020-10-15 16:41:32 +08:00
|
|
|
|
|
2022-08-30 11:22:54 +08:00
|
|
|
|
// FormatAddress format address
|
2020-10-15 16:41:32 +08:00
|
|
|
|
func FormatAddress(addr string) string {
|
|
|
|
|
|
if strings.HasSuffix(addr, "unix:") {
|
|
|
|
|
|
return addr
|
|
|
|
|
|
}
|
|
|
|
|
|
addr = strings.Replace(addr, " ", "", -1)
|
|
|
|
|
|
addr = strings.Replace(addr, "\t", "", -1)
|
|
|
|
|
|
addr = strings.Replace(addr, ":", ":", -1)
|
|
|
|
|
|
addr = strings.TrimSpace(addr)
|
|
|
|
|
|
return addr
|
|
|
|
|
|
}
|
2020-11-20 21:59:12 +08:00
|
|
|
|
|
2022-08-30 11:22:54 +08:00
|
|
|
|
// SplitNumbers 分割数字
|
2020-11-20 21:59:12 +08:00
|
|
|
|
func SplitNumbers(numbers string) (result []int64) {
|
|
|
|
|
|
if len(numbers) == 0 {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
pieces := strings.Split(numbers, ",")
|
|
|
|
|
|
for _, piece := range pieces {
|
|
|
|
|
|
number := types.Int64(strings.TrimSpace(piece))
|
|
|
|
|
|
result = append(result, number)
|
|
|
|
|
|
}
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|