- Ctrl + H
- Найти что:
(?:^|\G)(.+)(?:(\R)|\z)
- Заменить на:
'$1'(?2,:)
- CHECK Обернуть вокруг
- CHECK Регулярное выражение
- UNCHECK
. matches newline
* - Заменить все
Объяснение:
(?:^|\G) # non capture group, beginning of line or restart from last match position
(.+) # group 1, 1 or more any character but newline
(?: # non capture group
(\R) # group 2, any kind of linebreak
| # OR
\z # end of file
) # end group
Замена:
'$1' # content of grop 1 between single quotes
(?2,:) # conditional replace, if group 2 exists then a comma else nothing
Снимок экрана (до):
Снимок экрана (после):