云日志服务 LTS-多字符串和排序、反转、替换:str_replace

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

str_replace

  • 函数格式
    str_replace(value, old, new, count)
  • 参数说明

    参数名称

    参数类型

    是否必填

    说明

    value

    任意(自动转为String)

    需要被替换的值。

    old

    任意(自动转为String)

    需要被替换的字符串。

    new

    任意(自动转为String)

    替换后新的字符串。

    count

    Number

    替换次数,可选项。如果不设置count,则表示替换所有。

  • 返回结果

    替换后的新字符串

  • 函数示例
    • 测试数据:无
    • 加工规则
      e_set("str_replace", str_replace("this is string example", "is", "was"))
    • 加工结果
      str_replace: thwas was string example
support.huaweicloud.com/usermanual-lts/lts_07_0167.html