云日志服务 LTS-操作符函数:op_and

时间:2024-11-02 18:44:20

op_and

使用逻辑运算and,对任意类型值进行真假判断,所有参数值为真时返回true。

  • 函数格式
    op_and(value1, value2, ...)
  • 参数说明

    参数名称

    参数类型

    是否必填

    说明

    value1

    任意

    运算值1。

    value2

    任意

    运算值2。

  • 返回结果
    • 所有参数值为真时返回true。
    • 对任意类型值进行真假判断。
  • 函数示例
    1. 示例1:
      • 测试数据
        {
         "number1": 123,
         "number2": 234
        }
      • 加工规则
        e_set("op_and", op_and(v("number1"),v("number2")))
      • 加工结果
        number1: 123
        number2: 234
        op_and:  true
    2. 示例2:
      • 测试数据
        {
         "number1": 0,
         "number2": 234
        }
      • 加工规则
        e_set("op_and", op_and(v("number1"),v("number2")))
      • 加工结果
        number1: 0
        number2: 234
        op_and: false
    3. 示例3:
      • 测试数据
        {
         "ctx1": "false",
         "ctx2": 234
        }
      • 加工规则
        e_set("op_and", op_and(v("ctx1"),v("ctx2")))
      • 加工结果
        ctx1: false
        ctx2: 234
        op_and: true
    4. 示例4:
      • 测试数据
        {
         "ctx1": "true",
         "ctx2": 234
        }
      • 加工规则
        e_set("op_and", op_and(v("ctx1"),v("ctx2")))
      • 加工结果
        ctx1: true
        ctx2: 234
        op_and: true
support.huaweicloud.com/usermanual-lts/lts_07_0158.html