mirror of
https://github.com/jefferyjob/go-easy-utils.git
synced 2025-09-26 19:11:12 +08:00
9 lines
140 B
Go
9 lines
140 B
Go
package strx
|
|
|
|
import "unsafe"
|
|
|
|
// ToBytes 字符串转字节数组
|
|
func ToBytes(v string) []byte {
|
|
return *(*[]byte)(unsafe.Pointer(&v))
|
|
}
|