Remove text inside brackets
Moderators: Hacker, petermad, Stefan2, white
Remove text inside brackets
I want to rename files by removing whatever string is inside the () or []. How can I do this?
If you want to remove all braced substrings in filenames, you may use regex in multi-rename tool:
Code: Select all
Search for: (\[[^\]]*\])|(\([^\)]*\))
Replace with: <Clear>
RegEx: Yes
Subst.: No
Or without regular expressions:
Code: Select all
Search for: (*)|[*]
Replace with: <Clear>
RegEx: No
1x: No