INTERACT FORUM

More => Old Versions => Media Center 16 (Development Ended) => Topic started by: aaronshaw on July 16, 2011, 01:34:16 pm

Title: Expression function help
Post by: aaronshaw on July 16, 2011, 01:34:16 pm
I'm trying to make an expression to 'auto-tag' the name of tv series. So far I've got it pulling the name of the series from the folder the shows are in using:

listitem([filename],5,\

I want to add a conditional that only returns a result if the filepath contains the keyword TV (this way it wont return anything if the files are in the Movies folder), I've tried using the if(isequal([filename (path)] function but can't get it to work.

Anyone know how to get it to work?
Title: Re: Expression function help
Post by: minolotus on July 16, 2011, 02:53:29 pm
if(isequal([filename (path)],TV,7),listitem([filename],5,\),)

This expression is case-sensitive. If you would like to have a search rule which is not case-sensitive, replace 7 by 8.
Title: Re: Expression function help
Post by: aaronshaw on July 16, 2011, 02:58:43 pm
Brilliant! Thank you, looks like I missed out the closing parenthesis when I was trying to work it.