感动钢笔

文章
4
资源
0
加入时间
2年10月17天

转载--Beautifuisoup的使用转载自--http://mp.weixin.qq.com/s?src=11×tamp=1520511185&ver=742&signature=KDzYoOg8Xd9Uukb6HtdfBUIjvAAgcC1gisI42xaXTVprREExwR2Ib2DN*nu3myHJE0LX2Y*L8rLegvTuhy*6WoCbLBobgpLg3wOL4INB6NRSP2wSPlxbSYjZynsnWgrg&new=1BeautifulSoup的使用

转载自--http://mp.weixin.qq.com/s?src=11&timestamp=1520511185&ver=742&signature=KDzYoOg8Xd9Uukb6HtdfBUIjvAAgcC1gisI42xaXTVprREExwR2Ib2DN*nu3myHJE0LX2Y*L8rLegvTuhy*6WoCbLBobgpLg3wOL4INB6NRSP2w...

go 快速获取字符串中的网址

找到了个实用的包,无需正则就能快速获取到字符串中的网址代码示例:func TestName(t *testing.T) { s:="https://github.com/mvdan/xurls" findString := xurls.Relaxed.FindString(s) t.Log(findString) allString := xurls.Relaxed.FindAllString(s, -1) t.Log(allString) findA

golang的goproxy配置

版本要求>=1.131.首先开启go modulego env -w GO111MODULE=on // Windows export GO111MODULE=on // macOS 或 Linux2.配置goproxy:阿里配置:go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/ // Windows export GOPROXY=https://mirrors.aliyun.com/goproxy/..