Go語言的正則表式之regexp包
阿新 • • 發佈:2018-10-07
compile mpi exp regexp ext4 ack fun () == 正則表達式都是大同小異,隨便寫幾個案例:
// code_029_regexp project main.go package main import ( "fmt" "regexp" ) //Go中的正則表達式 func main() { //返回保管正則表達式所有不重疊的匹配結果的[]string切片。如果沒有匹配到,會返回nil。 //案例1 context1 := "3.14 123123 .68 haha 1.0 abc 6.66 123." exp1 := regexp.MustCompile(`\d+\.\d+`) result1 := exp1.FindAllStringSubmatch(context1, -1) fmt.Printf("%v\n", result1) //案例2 context2 := ` <title>標題</title> <div>你過來啊</div> <div>hello mike</div> <div>你大爺</div> <body>呵呵</body> ` exp2 := regexp.MustCompile(`<div>(.*?)</div>`) result2 := exp2.FindAllStringSubmatch(context2, -1) fmt.Printf("%v\n", result2) //案例3: context3 := ` <title>標題</title> <div>你過來啊</div> <div>hello mike go</div> <div>你大爺</div> <body>呵呵</body> ` exp3 := regexp.MustCompile(`<div>(?s:(.*?))</div>`) //這裏包含空格和換行 result3 := exp3.FindAllStringSubmatch(context3, -1) fmt.Printf("%v\n", result3) //案例4: context4 := ` <title>標題</title> <div>你過來啊</div> <div>hello mike go</div> <div>你大爺</div> <body>呵呵</body> ` for _, text := range result4 { fmt.Println(text[0]) fmt.Println(text[1]) fmt.Println("===========\n") } }
Go語言的正則表式之regexp包