云日志服务 LTS-字符串函数:split_part函数

时间:2024-07-04 10:52:12

split_part函数

使用指定的分隔符拆分字符串,并返回指定位置的字符串。如果拆分后指定的位置超过数组的长度,则返回“”。

语法:split_part(str, splitStr, position)

表24 参数说明

参数名称

描述

类型

是否必选

str

原始字符串。

String

splitStr

分隔符。

String

position

需要返回的字符串的位置。

Integer

返回值类型:STRING类型

示例:SELECT SPLIT_PART('helloworld', 'o', 2), SPLIT_PART('helloworld', 'o', 4)

表25 查询分析结果

类型

场景1

场景2

查询语句

SPLIT_PART('helloworld','o', 2)

SPLIT_PART('helloworld', 'o', 4)

返回结果

w

  
support.huaweicloud.com/usermanual-lts/lts_07_0093.html