首页 > 其他 > 详细

regular expressions _ golang

时间:2015-03-25 13:50:48      阅读:213      评论:0      收藏:0      [点我收藏+]

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]

 

regular expressions _ golang

原文:http://www.cnblogs.com/jackkiexu/p/4365434.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!