set define '^' set verify off prompt ...wwv_flow_regexp Rem NAME Rem wwv_flow_regexp.sql Rem Arguments: Rem 1: Rem 2: Rem 3: Flow user Rem MODIFIED (MM/DD/YYYY) Rem jstraub 04/08/2003 - Created Rem jstraub 06/29/2003 - Removed p_exact parameter Rem jkallman 06/02/2006 - Added g_result create or replace package wwv_flow_regexp as -- Copyright (c) Oracle Corporation 1999 - 2006. All Rights Reserved. -- -- -- DESCRIPTION -- This package is used to support regular expression features. The body that is compiled is -- dependant on the version of the db. If less that 10g, the body is stubbed. -- g_result boolean; function is_supported return boolean; function is_instr( p_source in varchar2, p_pattern in varchar2 ) return boolean; end wwv_flow_regexp; / show errors;