QUOTE (Hornhaut68 @ Apr 6 2012, 11:20)

...I just saw, that the last action [$left(%_filename%,$strrchr(%_filename%,')'))] above will delete all information out of the filename if theres is no bracket in it. ...
Hm, yes, you are responsible for selecting the appropriate file name before applying the formula.
You can filter the view by a filter expression like this ...
"%_FILENAME%" HAS ")"
QUOTE (Hornhaut68 @ Apr 6 2012, 11:20)

So, I thoguht about that, and that what I really need is, that everthing after the second or fourth ")" will be delete, but that MP3Tag will search for that, if there's fourth closed bracket, it will delete that which will follow, but if not he delte everthing after the second closed bracket, is this possible? ...
This is a new requirement?
Filter expression for two groups of opening and closing round brackets...
"%_FILENAME%" MATCHES "^[^()]*\([^()]*?\)[^()]*\([^()]*?\)[^()]*$"
... or ...
"%_FILENAME%" MATCHES "^(?:[^()]*\([^()]*?\)){2,2}[^()]*$"
... or ...
"%_FILENAME%" MATCHES "^(?:[^()]*\([^()]*?\)[^()]*){2,2}$"
Filter expression for four groups of opening and closing round brackets...
"%_FILENAME%" MATCHES "^[^()]*\([^()]*?\)[^()]*\([^()]*?\)[^()]*\([^()]*?\)[^()]*\([^()]*?\)[^()]*$"
... or ...
"%_FILENAME%" MATCHES "^(?:[^()]*\([^()]*?\)){4,4}[^()]*$"
... or ...
"%_FILENAME%" MATCHES "^(?:[^()]*\([^()]*?\)[^()]*){4,4}$"
DD.20120406.1230.CEST