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 (b1 bytes) bcontains(b2 bytes) bool
参数介绍
| 参数名称 | 参数介绍 |
|---|---|
| b1 | 被匹配的数据 |
| b2 | 要匹配的数据 |
举例
-
Response
-
匹配语句:
response.body.bcontains(b"abc123") -
输出结果:
true -
匹配语句:
response.body.bcontains(b"asd123") -
输出结果:
true -
匹配语句:
response.body.bcontains(b"abc124") -
输出结果:
false

