A script-enabled browser is required for this page to function properly.

LIST.DELETEITEM built-in procedure

This procedure deletes the item at the specified position in a list.

Syntax


PROCEDURE LIST.DELETEITEM
(list Listofchar),
pos PLS_INTEGER);

Parameter

Description

list

The name of an existing list.

pos

A position (base equals 0).

Example


/* 
** Delete the third item from 'my_List'
*/
LIST.DELETEITEM(my_package.my_List, 2));

See also

About the LIST built-in package

LIST built-in package