In
replace characters in notepad++ BUT exclude characters inside single quotation marks(2nd)
"Jonny 5" solved this question - BUT - if I have a construct like this:
SELECT column_name FROM table_name WHERE column_name IN ('A' , 'st9u' ,'Meyer', ....);
WHERE a.object_type IN (' 'TABLE'', ''MATerialIZED VIE3W' ')
vpl_text := IS_GOING_SMALL_CORRECT
(1) vpl_text := TO_CHAR(vpl_text_old) || ' ' ||...;
-- ------
vpl_text := STAYS_UPPER_ERROR
(2) vpl_text := TO_CHAR(vpl_text_old) || '' ||...;
-- ------
vpl_text := IS_GOING_SMALL_CORRECT
then the target should be:
select column_name from table_name where column_name in ('A' , 'st9u' ,'Meyer', ....);
where a.object_type in (' 'TABLE'', ''MATerialIZED VIE3W' ')
vpl_text := is_going_small_correct
(1) vpl_text := to_char(vpl_text_old) || ' ' ||...;
-- ------
vpl_text := stays_upper_error
(2) vpl_text := to_char(vpl_text_old) || '' ||...;
-- ------
vpl_text := is_going_small_correct
but the result is (The rest is o.k.!):
:
-- ------
vpl_text := STAYS_UPPER_ERROR
(2) vpl_text := TO_CHAR(vpl_text_old) || '' ||...;
-- ------
:
conditions: (same like in) replace characters in notepad++ BUT exclude characters inside single quotation marks(2nd)
It happens also, if I exchange the lines (1) and (2)!
How can I change this REGEX in notepad++ that ALL UPPER signs change to lower signs - exclude inside single quotation marks?