Regex sql解析案例结束表达式与正则表达式preg_match_all

Regex sql解析案例结束表达式与正则表达式preg_match_all,regex,preg-match-all,Regex,Preg Match All,我尝试从oracle查询解析case end表达式的内容。我使用下面的正则表达式 /(?(?)? ((?<=case)[\w\s:\=\'\".\,()\<>-]*?(?=end)){1}? ^^

我尝试从oracle查询解析case end表达式的内容。我使用下面的正则表达式

/(?
(?)?
((?<=case)[\w\s:\=\'\".\,()\<>-]*?(?=end)){1}?

                                ^^