Go語(yǔ)言的regexp
包提供了強(qiáng)大的正則表達(dá)式功能,可以用于處理字符串、匹配模式等。在Web開發(fā)中,正則表達(dá)式被廣泛應(yīng)用于以下幾個(gè)方面:
package main
import (
"fmt"
"net/http"
"regexp"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
// 使用正則表達(dá)式匹配URL中的"/user/*"模式
re := regexp.MustCompile(`^/user/.*$`)
if re.MatchString(r.URL.Path) {
fmt.Fprintf(w, "Welcome to the user page!")
} else {
http.NotFound(w, r)
}
})
http.ListenAndServe(":8080", nil)
}
package main
import (
"fmt"
"net/http"
"regexp"
)
func main() {
http.HandleFunc("/register", func(w http.ResponseWriter, r *http.Request) {
// 使用正則表達(dá)式驗(yàn)證電子郵件地址格式
emailRegex := regexp.MustCompile(`^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$`)
email := r.FormValue("email")
if emailRegex.MatchString(email) {
fmt.Fprintf(w, "Registration successful!")
} else {
fmt.Fprintf(w, "Invalid email address.")
}
})
http.ListenAndServe(":8080", nil)
}
package main
import (
"fmt"
"net/http"
"regexp"
)
func main() {
http.HandleFunc("/extract", func(w http.ResponseWriter, r *http.Request) {
// 使用正則表達(dá)式從HTML中提取所有的鏈接
html := `<html><body><a href="https://example.com">Example</a></body></html>`
linkRegex := regexp.MustCompile(`<a href="(https?://[^"]+)">`)
links := linkRegex.FindAllStringSubmatch(html, -1)
for _, link := range links {
fmt.Fprintf(w, "%s\n", link[1])
}
})
http.ListenAndServe(":8080", nil)
}
總之,在Web開發(fā)中,Go語(yǔ)言的regexp
包為處理字符串和匹配模式提供了強(qiáng)大的支持,可以應(yīng)用于URL路由匹配、表單驗(yàn)證和數(shù)據(jù)清洗等多個(gè)方面。