gpt4 book ai didi

java - 按每个字符串中的最后一个逗号拆分数组中的字符串

转载 作者:可可西里 更新时间:2023-11-01 15:12:43 25 4
gpt4 key购买 nike

比如说,我在配置单元中有一个字符串数组,例如:

hive> select array from my_table;
["\"string1\"","\"string2_component_a\",\"string2_component_b\"","\"string3_component_a\",\"string3_component_b\",\"string3_component_c\""]

如你所见,有以下三个字符串:

"string1"
"string2_component_a","string2_component_b"
"string3_component_a","string3_component_b","string3_component_c"

我想要的是用每个字符串中的last 逗号分隔每个元素。因此,生成的数组应包含以下 5 个组件:

"string1"
"string2_component_a"
"string2_component_b"
"string3_component_a","string3_component_b"
"string3_component_c"

有没有办法在 hive 中实现这一点?

最佳答案

单线使用

yourString.split(",", StringUtils.countMatches(yourString, ".") - 1);

更新:

Are you sure I can use it i hive?

根据 Hive documentation :

Requirements Java 1.7 Note: Hive versions 1.2 onward require Java 1.7 or newer. Hive versions 0.14 to 1.1 work with Java 1.6 as well. Users are strongly advised to start moving to Java 1.8 (see HIVE-8607).

是的,您将能够毫无问题地使用 Apache Commons 中的 String.splitStringUtils

关于java - 按每个字符串中的最后一个逗号拆分数组中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33018452/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com