Hello, I'm new on this site and I've searched for a while but didn't find a solution. So here's my problem:
Some audio files have notation between brackets. I want to get rid of these brackets en their content.
For example :
Peter Frampton - All of us (live).mp3 => Peter Frampton - All of us.mp3
Thanks in advance !
get rid of content between brackets
Moderators: Hacker, petermad, Stefan2, white
Re: get rid of content between brackets
This should work, except any spaces before the brackets.
Search for:
Replace with: (or empty value)
[X] RegEx
Search for:
Code: Select all
\(.+\)
Code: Select all
<Clear>
[X] RegEx
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Re: get rid of content between brackets
Code: Select all
\s*\([^)]*\)
Re: get rid of content between brackets
Dalai & ZoSTeR,
This works fine!! Thanks a lot !!
This works fine!! Thanks a lot !!