GO语言"regexp"包中"Regexp.Longest"类型的用法及代码示例。
用法:
func(re *Regexp) Longest()
Longest 使未来的搜索更喜欢leftmost-longest 匹配。也就是说,当与文本匹配时,正则表达式返回一个在输入(最左边)中尽早开始的匹配,并在其中选择一个尽可能长的匹配。此方法修改正则表达式,不得与任何其他方法同时调用。
例子:
package main
import (
"fmt"
"regexp"
)
func main() {
re := regexp.MustCompile(`a(|b)`)
fmt.Println(re.FindString("ab"))
re.Longest()
fmt.Println(re.FindString("ab"))
}
输出:
a ab
相关用法
- GO Regexp.FindString用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO Regexp.ReplaceAllLiteralString用法及代码示例
- GO Regexp.FindStringSubmatch用法及代码示例
- GO Regexp.FindAllString用法及代码示例
- GO Regexp.ExpandString用法及代码示例
- GO Regexp.FindAllStringSubmatch用法及代码示例
- GO Regexp.SubexpIndex用法及代码示例
- GO Regexp.Match用法及代码示例
- GO Regexp.FindStringIndex用法及代码示例
- GO Regexp.ReplaceAll用法及代码示例
- GO Regexp.Expand用法及代码示例
- GO Regexp.Find用法及代码示例
- GO Regexp.SubexpNames用法及代码示例
- GO Regexp.FindAllSubmatchIndex用法及代码示例
- GO Regexp.FindSubmatchIndex用法及代码示例
- GO Regexp.FindAllStringSubmatchIndex用法及代码示例
- GO Regexp.MatchString用法及代码示例
- GO Regexp.ReplaceAllString用法及代码示例
- GO Regexp.FindIndex用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Regexp.Longest。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。