Hello,
I use a regular expression pattern to add quotation marks to strings. It works in other text editors but it does not work in pl/sql developer. Example:
text pad:
find: ^.*$
replace: ,'&'
notepad ++:
find: ^(.*)$
replace: ,'\1'
What should I type in replace field to make...