I wrote a regular expression to highlight song titles in Everything 1.5a, but my question is how to copy or save ONLY all the highlighted titles into notepad/text editor?
Uncheck Regular Expressions from the Search menu.
Search for:
regex:"(?<= - )[^\(\)]+(?=\()" addcol:regmatch0
Select all your files.
From the File menu, under the Copy Properties submenu, click Copy Regular Expression Match 0
Use Regular Expression Match 1 (instead of match 0)
Match 0 is the entire match.
Match 1 is the first capture inside the ( )
Everything will always highlight with Regular Expression Match 0
Uncheck Regular Expressions from the Search menu.
Search for:
regex:\(([^)\s]+)\b addcol:regmatch1
Select all your files.
From the File menu, under the Copy Properties submenu, click Copy Regular Expression Match 1
This only works when you "copy", but it still highlights the bracket in Everything, and in all text editors it still highlights the bracket, and I have no idea how to solve this problem. I'm only interested in the name, without that unwanted bracket.
I have tried with many regular expressions to no avail.
I would also like to work with the names in any text editor after copying.