Hive SQL Split delimiter

Source: Internet
Author: User

Hive string splitting function

Split (str, regex)-splits str around occurances that match regex
Time taken:0.769 seconds, fetched:1 row (s)

The return value is an array

A. Basic usage :

Example 1:

Split (' A,b,c,d ', ', ')

The results obtained:

["A", "B", "C", "D"]

B. Intercept a value in a string:

Of course, we can also specify an item in the result array

Example 2:

Split (' A,b,c,d ', ', ') [0]

The results obtained:

A

C. Handling of special characters:

Special split symbol

Regex is a string-matching parameter, so special handling is required when encountering special characters

Example 3: "." Point

Split (' 192.168.0.1 ', '. ')

The results obtained:

[]

The correct wording:

Split (' 192.168.0.1 ', ' \ \ ')

The results obtained:

["192", "168", "0", "1"]

It is important to note that:

Of course, when split is included in the "", you need to add 4 additional \

such as Hive-e ".... Split (' 192.168.0.1 ', ' \\\\. ') ... "Otherwise the resulting value is null

The same | Such special symbols also need to be handled similarly.

Hive SQL Split delimiter

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.