GO语言"regexp"包中"MatchString"函数的用法及代码示例。
用法:
func MatchString(pattern string, s string)(matched bool, err error)
MatchString 报告字符串 s 是否包含正则表达式模式的任何匹配项。更复杂的查询需要使用 Compile 和完整的 Regexp 接口。
例子:
package main
import (
"fmt"
"regexp"
)
func main() {
matched, err := regexp.MatchString(`foo.*`, "seafood")
fmt.Println(matched, err)
matched, err = regexp.MatchString(`bar.*`, "seafood")
fmt.Println(matched, err)
matched, err = regexp.MatchString(`a(b`, "seafood")
fmt.Println(matched, err)
}
输出:
true <nil> false <nil> false error parsing regexp: missing closing ): `a(b`
相关用法
- GO Match用法及代码示例
- GO MakeFunc用法及代码示例
- GO Map用法及代码示例
- GO MakeTable用法及代码示例
- GO MarshalIndent用法及代码示例
- GO Marshal用法及代码示例
- GO MethodSet用法及代码示例
- GO Mul32用法及代码示例
- GO Mkdir用法及代码示例
- GO MkdirTemp用法及代码示例
- GO Modf用法及代码示例
- GO Mul64用法及代码示例
- GO Mod用法及代码示例
- GO MultiReader用法及代码示例
- GO MultiWriter用法及代码示例
- GO Month用法及代码示例
- GO MkdirAll用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 MatchString。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。