matches
matches
函数主要是用来使用正则表达式 s1 来匹配 s2,并返回 bool 类型匹配结果的
函数原型
func (s1 string) matches(s2 string) bool
参数介绍
参数名称 | 参数介绍 |
---|---|
s1 | 匹配语句 |
s2 | 待匹配的内容 |
举例
-
Response
-
匹配语句:
"root:.*?:[0-9]*:[0-9]*:".matches(response.body_string)
-
输出结果:
true
-
匹配语句:
"Accept-Enco.*".matches(response.headers["Vary"])
-
输出结果:
true
Was this page helpful?