Author Topic: reg exp in filter  (Read 1655 times)

kitin

  • Newbie
  • *
  • Posts: 8
Hi! I use few tags of genre for this field in my library, so it's like:
Artist 1 - Track 1 - house, techno
Artist 2 - Track 1 - house
Artist 3 - Track 1 - techno
Artist 4- Track 1 - techhouse
Artist 5- Track 1 - techhouse, house

Can I use some regular expression to show, for example, only 'house' tracks?

So it should be:
Artist 1 - Track 1 - house, techno
Artist 2 - Track 1 - house
Artist 5- Track 1 - techhouse, house

without Artist 4, because it's not "house" but "techhouse".

Maybe anybody knows how will be right reg exp for it?

hiccup

  • Sr. Member
  • ****
  • Posts: 7791
I believe this should do that trick:
regex: \bhouse\b

kitin

  • Newbie
  • *
  • Posts: 8
I believe this should do that trick:
regex: \bhouse\b
really works! thanks!