regex - Notepad++ how to find lines with a single word? -


in following:

 1 et tegat vestes 2 ipsam corpori  3 adaptat  4 thurificat illius postremams  5 ante infimum gradu  6 posito  7 in modum crucis sibi 8 fimbrias diligenter aptatut  9 lateribus  

how 1 make regular expression find lines single words in 3, 6 , 9? , optionally insert line break @ beginning of each?

search:

^(\s+)$ 

replace with:

\n\1 

Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -