go-easy-utils/strUtil/str_to_byte.go
jeffery e9cc195c39
Feature/example test (#24)
example docs
2023-04-12 15:09:44 +08:00

9 lines
149 B
Go

package strUtil
import "unsafe"
// StrToBytes 字符串转字节数组
func StrToBytes(v string) []byte {
return *(*[]byte)(unsafe.Pointer(&v))
}