Documentation Index
Fetch the complete documentation index at: https://docs.xray.cool/llms.txt
Use this file to discover all available pages before exploring further.
函数原型
func (s1 string) icontains(s2 string) bool
参数介绍
| 参数名称 | 参数介绍 |
|---|---|
| s1 | 被匹配的数据 |
| s2 | 要匹配的数据 |
举例
-
Response
-
匹配语句:
response.body_string.icontains("abc123") -
输出结果:
true -
匹配语句:
response.body_string.icontains("abc124") -
输出结果:
true -
匹配语句:
response.body_string.icontains("ASD123") -
输出结果:
true

