# case-sensitive filter

**URL:** https://community.mp3tag.de/t/case-sensitive-filter/12503
**Category:** Support
**Created:** [September 13, 2011, 11:09am UTC](https://community.mp3tag.de/t/case-sensitive-filter/12503 "2011-09-13T11:09:54Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Bruno\_Le\_Glay](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/b/848f3c/32.png) [@Bruno\_Le\_Glay](https://community.mp3tag.de/u/Bruno_Le_Glay)
#### Post date: [September 13, 2011, 11:09am UTC](https://community.mp3tag.de/t/case-sensitive-filter/12503/1 "2011-09-13T11:09:54Z")

</div>

Hello,  
I know that the help file mentions that 'All operations are non-case sensitive' but is there a possibility to filter CASE-SENSITIVELY ? :

```
  ex.: to be able to find "Studio" and not "studio"

```

Thanks in advance, Sincerely, Bruno.

---

<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: [September 13, 2011, 11:22am UTC](https://community.mp3tag.de/t/case-sensitive-filter/12503/2 "2011-09-13T11:22:40Z")

</div>

Yes:  
add a (?-i) in front of Studio  
e.g.

%title% MATCHES ._(?-i)Studio._

Should filter the capital studios, not the small ones 😉

---

<div class="post-metadata">

### Author: ![stevehero](https://community.mp3tag.de/user_avatar/community.mp3tag.de/stevehero/32/337_2.png) [@stevehero](https://community.mp3tag.de/u/stevehero)
#### Post date: [September 13, 2011, 11:41am UTC](https://community.mp3tag.de/t/case-sensitive-filter/12503/3 "2011-09-13T11:41:27Z")

</div>

> [@Bruno Le Glay](#):
>
> Hello,  
> ...ex.: to be able to find "Studio" and not "studio"...

%title% MATCHES (?-i)Studio

with **(?-i)** making sure case sensitivity is turned on

Replace _%title%_ with whatever tag you need.

---

<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/case-sensitive-filter/12503/4 "2026-02-09T12:23:20Z")

</div>


