update preg

master
李光春 2 years ago
parent 06d2bf229e
commit bf400e3ace

@ -1,7 +1,8 @@
## v1.0.32 / 2021-12-25
## v1.0.33 / 2021-12-25
- 优化aes方法
- 增加base64方法
- 优化 preg 方法
- 优化 aes 方法
- 增加 base64 方法
## v1.0.31 / 2021-12-24

@ -1,5 +1,5 @@
package go_library
func Version() string {
return "v1.0.32"
return "v1.0.33"
}

@ -0,0 +1,5 @@
package goarray
func Grouping() {
}

@ -1,14 +1,13 @@
package goint
import (
"fmt"
"testing"
)
func TestToString(t *testing.T) {
fmt.Println(ToString(2222))
t.Log(ToString(9898))
}
func TestToFloat64(t *testing.T) {
fmt.Println(ToFloat64(2222))
t.Log(ToFloat64(9898))
}

@ -1,12 +1,11 @@
package gomd5
import (
"fmt"
"testing"
)
func TestMd5(t *testing.T) {
fmt.Println(GetMD5Encode("测试"))
fmt.Println(ToUpper(GetMD5Encode("测试")))
fmt.Println(ToUpper("测试"))
t.Logf(GetMD5Encode("测试"))
t.Logf(ToUpper(GetMD5Encode("测试")))
t.Logf(ToUpper("测试"))
}

@ -1,4 +1,4 @@
package preg
package gopreg
import (
"regexp"

@ -1,4 +1,4 @@
package preg
package gopreg
import "testing"
Loading…
Cancel
Save