go_dreamfactory/cmd/v2/lib/common/utils_test.go
2022-08-09 18:03:02 +08:00

13 lines
176 B
Go

package common
import (
"fmt"
"testing"
)
func TestSubStr(t *testing.T) {
str := "type.googleapis.com/UserResChangePush"
r := SubStr(str, 20, len(str))
fmt.Println(r)
}