Author Topic: Filter "2.5D" [solved]  (Read 1531 times)

Vaz

  • Jr. Member
  • **
  • Posts: 11
    • View Profile
Filter "2.5D" [solved]
« 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?
« Last Edit: July 31, 2020, 02:42:31 AM by Vaz »

progets

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1271
    • View Profile
Re: Filter "2.5D"
« Reply #1 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
 

Vaz

  • Jr. Member
  • **
  • Posts: 11
    • View Profile
Re: Filter "2.5D"
« Reply #2 on: July 31, 2020, 02:24:41 AM »
Thank you!  :)