数据湖探索 DLI-字符串函数:REPLACE

时间:2024-11-08 09:33:25

REPLACE

  • 功能描述

    字符串替换函数,将字符串str1中的所有str2替换成str3。

  • 语法
    VARCHAR REPLACE(VARCHAR str1, VARCHAR str2, VARCHAR str3)
  • 参数说明
    • str1:原字符。
    • str2:目标字符。
    • str3:替换字符。
  • 示例
    • 测试语句:
      SELECT
        replace(
          "hello world hello world hello world",
          "world",
          "hello"
        );
    • 测试结果
      "hello hello hello hello hello hello"
support.huaweicloud.com/sqlreference-dli/dli_08_0096.html