go开源工具库 lancet  
   
所属分类 go
浏览量 941
https://blog.csdn.net/RA681t58CJxsgCkJ31/article/details/124776817
https://github.com/duke-git/lancet
https://gitee.com/dyyx/hellocode/tree/master/web/tech/go/lancet2.1.9
module lancetdemo
require ( 
  github.com/duke-git/lancet/v2 v2.1.9
)
// 
// replace github.com/duke-git/lancet/v2 => ../lancet2.1.9
go 1.19
package main
import (
	"fmt"
	"github.com/duke-git/lancet/v2/strutil"
)
func main() {
	fmt.Println("Hello, lancet")
	s := "dyyx"
	rs := strutil.Reverse(s)
	fmt.Println(rs)
}
https://gitee.com/dyyx/hellocode/tree/master/web/tech/go/lancetdemo
 上一篇  
   
 下一篇  
 go压测工具 go-stress-testing 
 Goroutine与线程的区别 
 go 多模块例子 
 华为笔记本触摸板使用技巧 
 Spring webflux 简介 
 junit4 常用注解