# Splitting a field

**URL:** https://community.mp3tag.de/t/splitting-a-field/12801
**Category:** Support
**Created:** [December 11, 2011, 2:04pm UTC](https://community.mp3tag.de/t/splitting-a-field/12801 "2011-12-11T14:04:33Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![privatewid](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/p/34f0e0/32.png) [@privatewid](https://community.mp3tag.de/u/privatewid)
#### Post date: [December 11, 2011, 2:04pm UTC](https://community.mp3tag.de/t/splitting-a-field/12801/1 "2011-12-11T14:04:33Z")

</div>

Hi all,

Can anyone tell me how I can split a field keeping only the first part of it like this please:

The Day (IDIOT012BP2)

I need to remove everything in the parenthesis and the trailing space (in this case after the letter 'y')

I've searched the forum and found this [post](https://community.mp3tag.de/t/12742/1) to be similar to what I need but my regex knowledge is dire!

Cheers,  
Paul

---

<div class="post-metadata">

### Author: ![ohrenkino](https://community.mp3tag.de/user_avatar/community.mp3tag.de/ohrenkino/32/4843_2.png) [@ohrenkino](https://community.mp3tag.de/u/ohrenkino)
#### Post date: [December 11, 2011, 2:12pm UTC](https://community.mp3tag.de/t/splitting-a-field/12801/2 "2011-12-11T14:12:40Z")

</div>

> [@The Sheriff](#):
>
> ...
> 
> The Day (IDIOT012BP2)
> 
> I need to remove everything in the parenthesis and the trailing space (in this case after the letter 'y')

Thanks for quoting me .. 😉  
Perhaps you try this:  
Create an action of the type "Replace with regular expression" for the field that has too much information.  
Enter as search string:  
(._) (._  
Enter as replace string:  
$1

---

<div class="post-metadata">

### Author: ![privatewid](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/p/34f0e0/32.png) [@privatewid](https://community.mp3tag.de/u/privatewid)
#### Post date: [December 11, 2011, 4:26pm UTC](https://community.mp3tag.de/t/splitting-a-field/12801/3 "2011-12-11T16:26:56Z")

</div>

Thanks ohrenkino much appreciated.

I only got as far as (.\*) before getting frustrated and posting for help!

---

<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:23pm UTC](https://community.mp3tag.de/t/splitting-a-field/12801/4 "2026-02-09T12:23:30Z")

</div>


