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方法 - 优化 preg 方法
- 增加base64方法 - 优化 aes 方法
- 增加 base64 方法
## v1.0.31 / 2021-12-24 ## v1.0.31 / 2021-12-24

@ -1,5 +1,5 @@
package go_library package go_library
func Version() string { 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 package goint
import ( import (
"fmt"
"testing" "testing"
) )
func TestToString(t *testing.T) { func TestToString(t *testing.T) {
fmt.Println(ToString(2222)) t.Log(ToString(9898))
} }
func TestToFloat64(t *testing.T) { func TestToFloat64(t *testing.T) {
fmt.Println(ToFloat64(2222)) t.Log(ToFloat64(9898))
} }

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

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

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