mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
13 lines
181 B
Go
13 lines
181 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/text/gstr"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(gstr.SubStr("我是中国人", 2))
|
|
fmt.Println(gstr.SubStr("我是中国人", 2, 2))
|
|
}
|