Well, chances that you would ruin your lyrics are relatively small. This script has info fields where you could see effect of some replacement, and has table where you could see same replacement for all selected/visible tracks, before you actually decide to press Replace or Replace All buttons.Muther wrote:I have no idea what to search for to replace double spacing between lyrics lines? So I thought I would ask for a hint, i didn't see anything in the presets, I'm thinking it may be /n or \n or maybe /nl but before I ruin all my lyrics I thought I'd ask someone in the know
There is no such thing as /n or /nl with Regular expressions. VBScript implementation of the RegExp supports \n for the line feed and \r for the carriage return. I am not so sure if I know what you want, but I think that it is very similar to the preset "Remove multiple spaces from the Title". You should enter next settings, but previously you need to download the new version of the script. Your question helped me to discover one bug. Thanks

Find what: (\r\n){2,}
Regular expression 1: checked
Replace with: $1
Regular expression 2 and VBScript expression: unchecked
By doing this you would have not space between paragraphs. Maybe you should remove space between lines only if there is more than 2 spaces. So, I think you should better try:
Find what: (\r\n){3,}
Replace with: $1$1