
golang
SherlockRen
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
小白都能看懂的go语言包管理工具"DEP"详解
简介 众所周知GO语言包管理工具百花齐放,前有godep、glide、govendor,后有dep。 今天我们来了解一下"dep",看看它是怎样实现包管理的。 dep安装 二进制文件安装: $ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh MAC安装 $ brew install dep GO...原创 2019-04-19 17:33:04 · 1350 阅读 · 0 评论 -
go 提取a标签内容正则表达式
精华所在:.?<a.?href=".?".?>(.+?).*? var re = regexp.MustCompile(`.*?<a.*?href=".*?".*?>(.+?)</a>.*?`) re.ReplaceAllString("<a href="http://test.com">aaaaaaa</a>", "$1") ...原创 2019-07-19 17:31:18 · 2705 阅读 · 0 评论