码迷,mamicode.com
首页 > 编程语言 > 详细

关于go语言中http做服务器使用正则的实例

时间:2015-05-30 16:45:36      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

<pre name="code" class="plain">package main

import (
	"net/http"
	"regexp"
)

func main() {
	http.HandleFunc("/", route)
	http.ListenAndServe(":8080", nil)
}

var num = regexp.MustCompile(`\d`)
var str = regexp.MustCompile(`\w`)

func route(w http.ResponseWriter, r *http.Request) {
	switch {
	case num.MatchString(r.URL.Path):
		digits(w, r)
	case str.MatchString(r.URL.Path):
		str(w, r)
	default:
		w.Write([]byte("位置匹配项"))
	}
}

func digits(w http.ResponseWriter, r *http.Request) {
	w.Write([]byte("receive digits"))
}

func str(w http.ResponseWriter, r *http.Request) {
	w.Write([]byte("receive string"))
}


关于go语言中http做服务器使用正则的实例

标签:

原文地址:http://blog.csdn.net/fyxichen/article/details/46274609

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!