当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO Regexp.FindAllSubmatch用法及代码示例


GO语言"regexp"包中"Regexp.FindAllSubmatch"类型的用法及代码示例。

用法:

func(re *Regexp) FindAllSubmatch(b []byte, n int) [][][]byte

FindAllSubmatch 是 FindSubmatch 的'All' 版本;它返回表达式的所有连续匹配的切片,如包注释中的'All' 说明所定义。返回值 nil 表示不匹配。

例子:

package main

import (
	"fmt"
	"regexp"
)

func main() {
	re := regexp.MustCompile(`foo(.?)`)
	fmt.Printf("%q\n", re.FindAllSubmatch([]byte(`seafood fool`), -1))

}

输出:

[["food" "d"] ["fool" "l"]]

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Regexp.FindAllSubmatch。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。