Adding Single quotes at the beginning and end of each string

notepadregex

I want to add single quotes at the beginning and end of all the strings in the given list and each item should be separated by a comma in notepad++

ANAND GABRIEL INDIA LIMITED
NARMAC MOTHER DAIRY HYDERABAD
LECTRICIT DE FRANCE
1 FB SUPPORT SERVICES P LTD
14 BRD AF GUWAHATI
1FB SUPPORT SERVICES PVT LTD
20 MICRONS LIMITED
20CUBE LOGISTICS PVT LTD
20TH CENTURY
21ST CENTURY MGNT SERV LTD

The result should be

'ANAND GABRIEL INDIA LIMITED',
'NARMAC MOTHER DAIRY HYDERABAD',
'LECTRICIT DE FRANCE',
'1 FB SUPPORT SERVICES P LTD',
'14 BRD AF GUWAHATI',
'1FB SUPPORT SERVICES PVT LTD',
'20 MICRONS LIMITED',
'20CUBE LOGISTICS PVT LTD',
'20TH CENTURY',
'21ST CENTURY MGNT SERV LTD'

Can you please help me with this?

Best Answer

As per comments of OP,

added (.+) in find what and replaced it with ('\1') and then added comma by finding this [\n] and replaced it with [,\n]

Related Question