云日志服务 LTS-查找判断、切分和格式化:str_zfill

时间:2024-05-23 10:48:51

str_zfill

用字符0从开头将字符串填充至指定长度。

  • 函数格式
    str_zfill(value, width)
  • 参数说明

    参数名称

    参数类型

    是否必填

    说明

    value

    任意(自动转为String)

    需要被修改的原字符串。

    width

    Number

    填充后字符串的总长度。

  • 返回结果

    处理后的字符串。

  • 函数示例
    • 测试数据
      {
       "value": "this is lts"
      }
    • 加工规则
      e_set("str_zfill", str_zfill(v("value"), 20))
    • 加工结果
      value: this is lts 
      str_zfill: 000000000this is lts
support.huaweicloud.com/usermanual-lts/zh-cn_topic_0000001934833833.html