# Lowercase filter doesn't seem to work properly

**URL:** https://community.mp3tag.de/t/lowercase-filter-doesnt-seem-to-work-properly/11222
**Category:** Support
**Created:** [December 2, 2010, 4:11pm UTC](https://community.mp3tag.de/t/lowercase-filter-doesnt-seem-to-work-properly/11222 "2010-12-02T16:11:26Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![gjera](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/g/ce73a5/32.png) [@gjera](https://community.mp3tag.de/u/gjera)
#### Post date: [December 2, 2010, 4:11pm UTC](https://community.mp3tag.de/t/lowercase-filter-doesnt-seem-to-work-properly/11222/1 "2010-12-02T16:11:26Z")

</div>

Hi

I don't seem to find a way, how to filter the song fields that have beginning in lowercase.  
%field% MATCHES ^\l - doesn't work  
%field% MATCHES ^[a-z] - doesn't work  
%field% MATCHES ^\U - doesn't work  
%field% MATCHES ^a - doesn't work (for beginning with specific letter - lowercase 'a')  
%field% MATCHES ^\x{0061} - doesn't work (for beginning with specific letter - lowercase 'a')

It always returns matches regardles of uppercase or lowercase...

Does anyone have any idea or is it bug...

Best regards.

---

<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 2, 2010, 5:20pm UTC](https://community.mp3tag.de/t/lowercase-filter-doesnt-seem-to-work-properly/11222/2 "2010-12-02T17:20:50Z")

</div>

try a  
%field% MATCHES (?-i)^\l  
to find the lower case letters in the front

as a default mp3tag ignores any kind of case for the search pattern in the filter, so you have to force it every time.

---

<div class="post-metadata">

### Author: ![gjera](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/g/ce73a5/32.png) [@gjera](https://community.mp3tag.de/u/gjera)
#### Post date: [December 2, 2010, 8:27pm UTC](https://community.mp3tag.de/t/lowercase-filter-doesnt-seem-to-work-properly/11222/3 "2010-12-02T20:27:36Z")

</div>

> [@ohrenkino](#):
>
> try a  
> %field% MATCHES (?-i)^\l  
> to find the lower case letters in the front
> 
> as a default mp3tag ignores any kind of case for the search pattern in the filter, so you have to force it every time.

Wow. Who would think. It acually works. Although I don't know why...  
Anyway. Thank you...

---

<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/lowercase-filter-doesnt-seem-to-work-properly/11222/4 "2026-02-09T12:22:43Z")

</div>


