Attract-Mode Support Forum

Attract-Mode Support => General => Topic started by: Vaz on July 30, 2020, 05:01:38 PM

Title: Filter "2.5D" [solved]
Post by: Vaz on July 30, 2020, 05:01:38 PM
Hi!

I would like to create a filter to list games in the "2.5D" genre. But all my attempts were useless and I didn't find it on the forum either, can anybody help me?
Title: Re: Filter "2.5D"
Post by: progets on July 30, 2020, 07:21:28 PM
AM rules use regex. Regex has a dozen special characters that must be escaped by a backslash (\) and the period (.) is one of them. As a result your rule should be something like this.

Code: [Select]
filter               2.5D
rule                 Category contains 2\.5D
 
Title: Re: Filter "2.5D"
Post by: Vaz on July 31, 2020, 02:24:41 AM
Thank you!  :)