P
P
Pavel Pavel2021-08-07 14:38:32
Notepad++
Pavel Pavel, 2021-08-07 14:38:32

How to convert data from Notepad++ string to human readable correct form?

Hello!

There are a huge number of lines that contain something like this:

Anders FroenEdvard NormannFredrik Borch OlsenGunnar GreveJames NjieKristoffer HauganSophia SomajoThomas TroelsenVictor VerpillatYann Bargain


How can you convert the top line to human-readable form in NotePad++? Namely, it is necessary that a comma and a space be placed between the small letter and the large letter. I haven’t been banned on Google yet, but I haven’t found a similar example anywhere.

Correct output:
Anders Froen, Edvard Normann, Fredrik Borch Olsen, Gunnar Greve, James Njie, Kristoffer Haugan, Sophia Somajo, Thomas Troelsen, Victor Verpillat, Yann Bargain


I will be glad if someone can help. Thanks in advance!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
dodo512, 2021-08-07
@pavelzabavin

Find: ([a-z])([A-Z])
Replace: $1, $2
If Russian letters are also needed.
Find: (?|([a-z])([A-Z])|([а-яё])([А-ЯЁ]))
Replace:$1, $2

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question