33.25 TABLE_TO_STRING Function

This function returns the values of the apex_application_global.vc_arr2 input table p_table as a concatenated varchar2, separated by p_sep.

Syntax

function table_to_string (
    p_table in wwv_flow_global.vc_arr2,
    p_sep   in varchar2             default ':' )
    return varchar2;

Parameters

Table 33-27 TABLE_TO_STRING Function Parameters

Parameters Description

p_table

The input table, assumes no holes and index starts at 1.

p_sep

The separator, default is ':'.

Example

Concatenate numbers, separated by ':'.

declare
    l_table apex_application_global.vc_arr2;
begin
    l_table(1) := 'a';
    l_table(2) := 'b';
    l_table(3) := 'c';
    sys.dbms_output.put_line(apex_string.table_to_string(l_table));
end;
-> a:b:c