
Do you ever export your planet list?
I prefer seeing each planet on its own line.
When I did this in Word, I needed search and replace No Citadel and Levels 1-6, which was 7 steps.
Word doesn't allow using wildcards with special characters, so you can't search for "Level ?^p."
However, if you enable wildcards, ^13 is the paragraph symbol, so:
would search for "Level" with one or more spaces before it and a carriage return afterward, and:
would insert tabs.
Supposedly,
" ({2,})(Level ?|No Citadel)^13"
would search for "Level ?" or "No Citadel," but I couldn't get it to work.
In Notepad++, if you pull up Search and Replace, select Regular expression, and paste
Code:
\s+(No Citadel|Level \d)\r\n
into Find what and
into Replace with, it will replace the spaces before No Citadel or Level ? with a tab and replace the line break with another tab, allowing you to see each planet's data in one row!
