bi工程师需要哪些技能(什么叫bi工程师)
772
2022-05-29
一.获得初始页面内容
gopm get -g -v golang.org/x/text //引入gbk库
报错: bash: gopm: command not found
解决方法: 使用gopm 完成安装
gopm--Go Package Manager 的缩写。是go 上的包管理工具,十分好用。 gopm
1.gopm 安装:
这个十分简单只需一条命令就可以了:
go get -u github.com/gpmgo/gopm //亲测可用
2.使用 gopm安装需要的包
gopm 具有丰富的包管理功能,具体的管理命令可以参考官方文档(官方文档有中文版 各位爽不爽)链接
这里只需要一条命令就可以搞定了:
gopm bin -d $GOPATH/bin PackageName
二.正则表达式获取邮件地址
package main
import (
"fmt"
"regexp"
)
const text = `
my email is lxw@qq.com
email2 is aa@def.com
email3 is bb@eft.com.cn
`
func main() {
re := regexp.MustCompile(`([a-zA-Z0-9]+)@([a-zA-Z0-9]+)(\.[a-zA-Z0-9]+)`)
match := re.FindAllStringSubmatch(text, -1)
for _, m := range match {
fmt.Println(m)
}
}
2.提取城市和url
package main
import (
"fmt"
"io/ioutil"
"net/http"
"regexp"
)
func main() {
resp, err := http.Get("http://www.zhenai.com/zhenghun")
if err != nil {
panic(err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
fmt.Println("Error:status code", resp.StatusCode)
return
}
all, err := ioutil.ReadAll(resp.Body)
if err != nil {
panic(err)
}
//fmt.Printf("%s\n", all)
printCityList(all)
}
func printCityList(contents []byte){
re:=regexp.MustCompile(`]*>([^<]+)`)
match:=re.FindAllSubmatch(contents,-1)
for _,m :=range match {
//for _,sub:=range m {
// fmt.Printf("%s",sub)
//}
//fmt.Println()
fmt.Printf("city: %s, Url:%s \n",m[2],m[1])
}
fmt.Printf("matches found:%d\n",len(match))
}
Go
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。