# Mixed case after a word

**URL:** https://community.mp3tag.de/t/mixed-case-after-a-word/11301
**Category:** Support
**Created:** [December 17, 2010, 10:29pm UTC](https://community.mp3tag.de/t/mixed-case-after-a-word/11301 "2010-12-17T22:29:53Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![barbudo2005](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/b/73ab20/32.png) [@barbudo2005](https://community.mp3tag.de/u/barbudo2005)
#### Post date: [December 17, 2010, 10:29pm UTC](https://community.mp3tag.de/t/mixed-case-after-a-word/11301/1 "2010-12-17T22:29:53Z")

</div>

I have titles with feat. george benson).mp3 and I want to change to feat. George Benson.mp3

How can I do that?

Thanks in advance

---

<div class="post-metadata">

### Author: ![pone](https://community.mp3tag.de/user_avatar/community.mp3tag.de/pone/32/272_2.png) [@pone](https://community.mp3tag.de/u/pone)
#### Post date: [December 18, 2010, 2:49am UTC](https://community.mp3tag.de/t/mixed-case-after-a-word/11301/2 "2010-12-18T02:49:17Z")

</div>

are you talking about titles or filenames?  
do you want to remove the parenthesis?

to change all words but a few selected to Normal Case, do the following:

Action: Format Value  
Field: TITLE  
Formatstring: $replace($caps($regexp($lower(%title%),\b(feat|featuring|vs)\b,@@@$1)),@@@,)

this is for the TITLE field, for filename use \_FILENAME  
I have selected the word feat|featuring|vs to stay in lower case, you can add as many as you want.

---

<div class="post-metadata">

### Author: ![barbudo2005](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/b/73ab20/32.png) [@barbudo2005](https://community.mp3tag.de/u/barbudo2005)
#### Post date: [December 18, 2010, 1:30pm UTC](https://community.mp3tag.de/t/mixed-case-after-a-word/11301/3 "2010-12-18T13:30:39Z")

</div>

Sorry I did'nt explain well:

The TITLE is

Minnesota shuffle feat. george benson).mp3

and I want to change to

Minnesota shuffle feat. George Benson.mp3

Only change the part after "feat."

Thanks in advance

---

<div class="post-metadata">

### Author: ![pone](https://community.mp3tag.de/user_avatar/community.mp3tag.de/pone/32/272_2.png) [@pone](https://community.mp3tag.de/u/pone)
#### Post date: [December 18, 2010, 2:23pm UTC](https://community.mp3tag.de/t/mixed-case-after-a-word/11301/4 "2010-12-18T14:23:22Z")

</div>

What a mess. You don't want to change Minnesota shuffle into Minesota Shuffle as it would be correct format for titles, but you care about the artist name?  
And where comes that closing parenthesis without opening from???  
And you want a TITLE tag field ending with .mp3???

Are you sure?

here you go anyway:  
$regexp(%title%,(._?)feat(._),$1feat)$caps($regexp(%title%,(._?)feat(._)')',$2))

or if the parenthesis is not always there:  
$replace($regexp(%title%,(._?)feat(._),$1feat)$caps($regexp(%title%,(._?)feat(._),$2)),')',)

---

<div class="post-metadata">

### Author: ![barbudo2005](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/b/73ab20/32.png) [@barbudo2005](https://community.mp3tag.de/u/barbudo2005)
#### Post date: [December 18, 2010, 7:50pm UTC](https://community.mp3tag.de/t/mixed-case-after-a-word/11301/5 "2010-12-18T19:50:12Z")

</div>

Thank you very much. Was perfect

I don't want title with mp3. and I like the title like this.

Another question please?

How to filter only the files with "feat."?

---

<div class="post-metadata">

### Author: ![pone](https://community.mp3tag.de/user_avatar/community.mp3tag.de/pone/32/272_2.png) [@pone](https://community.mp3tag.de/u/pone)
#### Post date: [December 19, 2010, 2:30pm UTC](https://community.mp3tag.de/t/mixed-case-after-a-word/11301/6 "2010-12-19T14:30:58Z")

</div>

> [@barbudo2005](#):
>
> How to filter only the files with "feat."?

%title% HAS feat.  
or  
%\_filename% HAS feat.

---

<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/mixed-case-after-a-word/11301/7 "2026-02-09T12:22:45Z")

</div>


