How do we achieve the following using replace function in notepad++?
Transforming the following
cow
horse
elephant
camel
into
'cow','horse','elephant','camel'
I know ^ and $ (under Regular Expression) will let me access the beginning and end of the line and therefore I can put the single quotes at the extremes but then how do I append the lines thereafter? Also, I want to do everything (putting quotes and appending) in one go if possible.
Thank you very much for your help.