Compare commits
No commits in common. "master" and "v1.0.3" have entirely different histories.
25
str.go
25
str.go
@ -6,7 +6,6 @@ import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"math/rand"
|
||||
"os"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
@ -43,7 +42,7 @@ func GetRandomCharString(l int) string {
|
||||
return string(result)
|
||||
}
|
||||
|
||||
// skip
|
||||
//skip
|
||||
func Skip(s string, sep string, n int) string {
|
||||
seplen := len(sep)
|
||||
if seplen == 0 || n < 0 {
|
||||
@ -105,9 +104,8 @@ func JsonstrToStrMap(jsonstr string) (m map[string]string) {
|
||||
}
|
||||
|
||||
// string to string map to string
|
||||
//
|
||||
// example: "K1:V1;K2:V2"
|
||||
// => {K1:V1, K2:V2}
|
||||
// example: "K1:V1;K2:V2"
|
||||
// => {K1:V1, K2:V2}
|
||||
func StringToStrMap(str string, sep1, sep2 string) (m map[string]string) {
|
||||
m = map[string]string{}
|
||||
for _, kvstr := range strings.Split(str, sep1) {
|
||||
@ -117,20 +115,3 @@ func StringToStrMap(str string, sep1, sep2 string) (m map[string]string) {
|
||||
}
|
||||
return m
|
||||
}
|
||||
|
||||
// get os env with default
|
||||
func GetEnvDefault(key, defval string) string {
|
||||
if val, ok := os.LookupEnv(key); ok {
|
||||
return val
|
||||
} else {
|
||||
return defval
|
||||
}
|
||||
}
|
||||
|
||||
// fix hex string to no 0x prefix
|
||||
func FixToNo0x(hexstr string) string {
|
||||
if strings.HasPrefix(hexstr, "0x") {
|
||||
return hexstr[2:]
|
||||
}
|
||||
return hexstr
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user