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


GO Regexp.FindStringIndex用法及代码示例


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

用法:

func(re *Regexp) FindStringIndex(s string)(loc []int)

FindStringIndex 返回一个二元素整数切片,定义正则表达式 s 中最左侧匹配的位置。匹配本身位于 s[loc[0]:loc[1]]。返回值 nil 表示不匹配。

例子:

package main

import (
	"fmt"
	"regexp"
)

func main() {
	re := regexp.MustCompile(`ab?`)
	fmt.Println(re.FindStringIndex("tablett"))
	fmt.Println(re.FindStringIndex("foo") == nil)
}

输出:

[1 3]
true

相关用法


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