Input

A
B
C
D
E

1.Find (in regular expression mode): (.+) Replace with ‘\1’

'A'
'B'
'C'
'D'
'E'

2.Find (in extended mode): \r\n Replace with ,

Output

'A','B','C','D','E'

Comments are closed.