# Remove Parentheses from Title

**URL:** https://community.mp3tag.de/t/remove-parentheses-from-title/49158
**Category:** Support
**Created:** [May 31, 2020, 11:40am UTC](https://community.mp3tag.de/t/remove-parentheses-from-title/49158 "2020-05-31T11:40:23Z")
**Posts on this page:** 1
**Showing post:** 9

<div class="post-metadata">

### Author: ![LyricsLover](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/l/c6cbf5/32.png) [@LyricsLover](https://community.mp3tag.de/u/LyricsLover)
#### Post date: [November 12, 2022, 10:46am UTC](https://community.mp3tag.de/t/remove-parentheses-from-title/49158/9 "2022-11-12T10:46:39Z")

</div>

> [@Nayeenanajar](#):
>
> `\(.*\)$`  
> I have no clue why or how it works

This regular expression search for the first opening bracket `(`  
then any character until a closing bracket `)` which has to be at the end `$`  
to be matched.  
If you replace it with nothing, this results in removing the matching characters between and including the brackets.

 ![image](https://community.mp3tag.de/uploads/default/original/2X/b/b642effad5d4eec4c26f5d34b20348e742fbb79c.png)

This works for `(blabla)` in the example title text  
`My text in a title (blabla)` and becomes `My text in a title`  
This works NOT for the example title text, where the closing bracket is not at the end of the title.  
`My Text in a title (blabla) or other text`

---

_[View the full topic](https://community.mp3tag.de/t/remove-parentheses-from-title/49158)._
