摘要: 一、代码 package main import ( "fmt" "github.com/microcosm-cc/bluemonday" "github.com/russross/blackfriday" "io/ioutil" "os" ) func ReadAll(filePth string 阅读全文
posted @ 2019-11-26 16:54 Maple_feng 阅读(1457) 评论(0) 推荐(0) 编辑
摘要: 一、代码 package main import ( "fmt" "strings" "strconv" "time" ) // StrToIntMonth 字符串月份转整数月份 func StrToIntMonth(month string) int { var data = map[string 阅读全文
posted @ 2019-11-26 16:25 Maple_feng 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 一、代码 package main import ( "fmt" "regexp" ) func main() { text := `Hello 世界!123 Go.` // 查找连续的小写字母 reg := regexp.MustCompile(`[a-z]+`) fmt.Printf("%q\n 阅读全文
posted @ 2019-11-26 16:00 Maple_feng 阅读(1797) 评论(0) 推荐(0) 编辑