# How To Remove Parentheses and its contents?

**URL:** https://community.mp3tag.de/t/how-to-remove-parentheses-and-its-contents/11276
**Category:** Support
**Created:** [December 12, 2010, 9:46am UTC](https://community.mp3tag.de/t/how-to-remove-parentheses-and-its-contents/11276 "2010-12-12T09:46:58Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Kaya](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/k/5f8ce5/32.png) [@Kaya](https://community.mp3tag.de/u/Kaya)
#### Post date: [December 12, 2010, 9:46am UTC](https://community.mp3tag.de/t/how-to-remove-parentheses-and-its-contents/11276/1 "2010-12-12T09:46:58Z")

</div>

Hello,

I have a mp3 with the title:

Welcome To The World Ft. Kanye West And Kid Cudi (Produced By Kanye West)

and I want to remove the parentheses and its contents so it just says:

Welcome To The World Ft. Kanye West And Kid Cudi

Any help would be great! Thanks in advance.

---

<div class="post-metadata">

### Author: ![mjcm](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/m/9d8465/32.png) [@mjcm](https://community.mp3tag.de/u/mjcm)
#### Post date: [December 12, 2010, 9:57am UTC](https://community.mp3tag.de/t/how-to-remove-parentheses-and-its-contents/11276/2 "2010-12-12T09:57:13Z")

</div>

This should you get started

[Regular Expressions](https://community.mp3tag.de/t/521/30)

---

<div class="post-metadata">

### Author: ![Butzenbrecher](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/b/82dd89/32.png) [@Butzenbrecher](https://community.mp3tag.de/u/Butzenbrecher)
#### Post date: [December 12, 2010, 10:53am UTC](https://community.mp3tag.de/t/how-to-remove-parentheses-and-its-contents/11276/3 "2010-12-12T10:53:32Z")

</div>

This expression removes all parentheses with its content:

`$regexp(%title%,'\s*\(.+?\)',)`

and this removes only the last one:

`$regexp(%title%,'\s*\([^)]+\)([^(]*)$',)`

I have found these expressions in here but i don't know where.

---

<div class="post-metadata">

### Author: ![system](https://community.mp3tag.de/uploads/default/original/2X/c/ce7035d426cb755a7916793326d23b465222a407.png) [@system](https://community.mp3tag.de/u/system)
#### Post date: [February 9, 2026, 12:22pm UTC](https://community.mp3tag.de/t/how-to-remove-parentheses-and-its-contents/11276/4 "2026-02-09T12:22:45Z")

</div>


