This procedure randomly re-orders the values of the input table.
Syntax
shuffle (
      p_table  in out nocopy apex_t_varchar2 );
Parameters
Table 31-18 SHUFFLE Procedure Parameters
| Parameters | Description | 
|---|---|
| 
 | The input table, which will be modified by the procedure. | 
Example
Shuffle and print l_table.
declare
    l_table apex_t_varchar2 := apex_string.split('1234567890',null);
begin
    apex_string.shuffle(l_table);
    sys.dbms_output.put_line(apex_string.join(l_table,':'));
end;
-> a permutation of 1:2:3:4:5:6:7:8:9:0                   
Parent topic: APEX_STRING