37.26 GET_POSITION_IN_LIST Function
This function returns the position in the list where p_value is stored. If it is not found, null is returned.
Syntax
APEX_PLUGIN_UTIL.GET_POSITION_IN_LIST(
    p_list IN apex_application_global.vc_arr2,
    p_value IN VARCHAR2)
RETURN NUMBER;
Parameters
Table 37-37 GET_POSITION_IN_LIST Parameters
| Parameter | Description | 
|---|---|
| 
 | Array of type  | 
| 
 | Value located in the  | 
Return
Table 37-38 GET_POSITION_IN_LIST Return
| Return | Description | 
|---|---|
| 
 | Returns the position of  | 
Example
The following example searchs for "New York" in the provided list and returns 2 into l_position.
                  
declare
    l_list     apex_application_global.vc_arr2;
    l_position number;
begin
    l_list(1) := 'Rome';
    l_list(2) := 'New York';
    l_list(3) := 'Vienna';
    
    l_position := apex_plugin_util.get_position_in_list (
                      p_list  => l_list,
                      p_value => 'New York' );
end;Parent topic: APEX_PLUGIN_UTIL