I have a text :
the_historical_date := (the_study_fwd_queue_pkg_var->>'c_historical_date')::TIMESTAMP;
udy_fwd_queue_pkg_var->>'c_testdate')
udy_fwd_queue_pkg_var->>'C_sdad')
udy_fwd_queue_pkg_var->>'C_sDad')
udy_fwd_queue_pkg_var->>'C_AAA')
and a regex to find and convert upper case to lower case
Regex : '[c|C]_[a-z][^)\s]*'
Replace: \U$1
But when I click 'Replace All' or 'Replace', it's replace by an empty string
the_historical_date := (the_study_fwd_queue_pkg_var->>)::TIMESTAMP;
udy_fwd_queue_pkg_var->>)
udy_fwd_queue_pkg_var->>)
udy_fwd_queue_pkg_var->>)
udy_fwd_queue_pkg_var->>'C_AAA')
What's wrong with my procedure?