What I need to do is to delete everything that ends with desktop.ini and begins with Library with varying text in between.
In my list, it looks like this:
Library\aaaa\desktop.ini
Library\bbbb\1111\desktop.ini
Library\bbbb\line-I-dont-want-to-delete
Library\cccc\222\CCCC\desktop.ini
Library\dddd\3333\D\desktop.ini
After using the Replace feature, all that should be left is:
Library\bbbb\line-I dont-want-to-delete.
I'm really terrible with RegEx, but what I need is something like this:
^Library\$[(A-Z)?]\desktop.ini
Apologies if that's all I have, but thanks in advance for helping me with this!

^lib.*ini\nso that you not forget it soon next time ......