strUtil

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 14, 2022 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Bytes2String

func Bytes2String(b []byte) string

Bytes2String直接转换底层指针,两者指向的相同的内存,改一个另外一个也会变。 效率是string([]byte{})的百倍以上,且转换量越大效率优势越明显。

func CompareVersion

func CompareVersion(src, dst string) int

版本比较, src > dst 返回 1 src = dst 返回 0 src < dst 返回 -1

func FillZero

func FillZero(sl []string, i int) []string

func GetRandomString

func GetRandomString(l int) string

获取指定长度的随机字符串

func Hash added in v1.0.1

func Hash(v interface{}) (uint64, error)

Hash returns the xxhash of an arbitrary value or struct. NOT SUITABLE FOR CRYTOGRAPHIC HASHING.

func MustHash added in v1.0.1

func MustHash(v interface{}) uint64

MustHash returns the xxhash of an arbitrary value or struct. Returns 0 on error. NOT SUITABLE FOR CRYTOGRAPHIC HASHING.

func ObjByAnchor

func ObjByAnchor(str, anchor string) interface{}

func Parse

func Parse(str string, v interface{}) error

func ParseByBytes

func ParseByBytes(bytes []byte, v interface{}) error

func ParseFromYaml

func ParseFromYaml(str string, v interface{}) error

func RandStringBytesMaskImpr

func RandStringBytesMaskImpr(n int) []byte

生成指定长度的随机字符串

func String2Bytes

func String2Bytes(s string) []byte

String2Bytes直接转换底层指针,两者指向的相同的内存,改一个另外一个也会变。 效率是string([]byte{})的百倍以上,且转换量越大效率优势越明显。 转换之后若没做其他操作直接改变里面的字符,则程序会崩溃。 如 b:=String2bytes("xxx"); b[1]='d'; 程序将panic。

func ToJsonStr

func ToJsonStr(obj interface{}) string

****************************************

*
* json
*
****************************************

将对象转为json字符串

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL