get
url:="http://www.baidu.com" /
resp,err:=http.Get( " ...http...") / if err!=nil /panin(err) / defer rest.Body.Close( ) /
body,err :=ioutil.ReadAll(resp.Body) / fmt.println(string (body))
post
resp,err := http.Post ( "...","application/x-www-form-urlencoded",strings.Newreader( "...=..."))
正则表达式
. 匹配除换行符以外的任意字符 ,
\ w 匹配字母,数字,下划线,汉字 ,
\ s 匹配任意的空白符
\ d 匹配数字
\ b 匹配单词的开始或结束
^ , $ 匹配字符串的开始和结束
* 重复0次或更多次 + 重复1次或更多次 ? 重复0次或1次 { n } 重复n次 {n,}或{0,} 重复n次或更多次 {n,m} 重复n次到m次
网友评论