Split a string by character

Source: Internet
Author: User

CREATE OR REPLACE PROCEDURE get_split (

V_string1 in VARCHAR2,--input string
V_start in number,--the position at which to start the Intercept
V_length in numbers,--number of characters intercepted
V_split in VARCHAR2--separator symbol

)

As

V_string2 VARCHAR2 (50); --Retain the truncated string

BEGIN

For I in V_start. LENGTH (V_STRING1) LOOP--from the first position of a string to the last position of the string
V_string2:=substr (v_string1,i,v_length); --Traversal string
If INSTR (V_string2, V_split) =0 and LENGTH (v_string2) > 2 Then--if the position of '. ' In the string is empty then no. character; length of string CHAR2 > 2
Dbms_output.    Put_Line (V_STRING2); --Output CHAR2
END IF;
END LOOP;

END Get_split;

Split a string by character

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.