regular expressions _ golang

Go ofer built-in support for regular expressions. Here are some examples of common regexp-related tasks in Go.

package main

import (
    // "bytes"
    "fmt"
    "regexp"
)

func main() {

    match, _ := regexp.MatchString("p([a-z]+)ch", "peach")
    fmt.Println(match)

    r, _ := regexp.Compile("p([a-z]+)ch")

    fmt.Println(r.MatchString("peach"))
    fmt.Println(r.FindStringIndex("peach punch"))

    fmt.Println(r.FindStringSubmatch("peach punch"))

    fmt.Println(r.FindStringSubmatchIndex("peach punch"))
}
true
true
[0 5]
[peach ea]
[0 5 1 3]

 

posted on 2015-03-25 13:24  xjk112  阅读(221)  评论(0编辑  收藏  举报