5、REGEXP_SUBSTR(x,pattern[,start[,occurrence[, match_option]]])用于在x中查找pattern并返回。可以参考字符串函数 SUBSTR(),参数同REGEXP_INSTR函数,参考第3

sql 代码:

  1. DECLARE     
  2.     V_RESULT VARCHAR2(255);     
  3. BEGIN     
  4.     --返回‘light’    
  5.     SELECT REGEXP_SUBSTR('But, soft! What light through yonder window breaks?','l[[:alpha:]]{4}'INTO V_RESULT     
  6.     FROM DUAL;           
  7.     DBMS_OUTPUT.PUT_LINE(V_RESULT);          
  8. END;