Jump to content

Exclude movies genres from VirtualTV channels


fadinader

Recommended Posts

fadinader

Dears,

How can i exclude movies genres from VirtualTV channel, as i think i can't manage the code properly.

Capture22.PNG

Link to comment
Share on other sites

mickle026

I don't know much about it, but in programming when splitting strings you split by a delimiter, in the case using the space so try putting the exclamation and word together

!action <-- like this

! action <-- not like this

The !_ is probably treated as a word the word action as another word. If it's just all one !action then that won't be split into 2 words and it will mean "not action".

Example:: your line has 3 words

1. Romance

2. !

3. Action

This would be 2 words

1. Romance

2. !Action

  • Like 1
Link to comment
Share on other sites

fadinader

Thanks alot ,,, 

Romance && !Action works fine but if i want to exclue many categories, shall i put the code like this Romance && !Action && !Horror    ??

Link to comment
Share on other sites

pünktchen
2 minutes ago, fadinader said:

Thanks alot ,,, 

Romance && !Action works fine but if i want to exclue many categories, shall i put the code like this Romance && !Action && !Horror    ??

Yes, that will work. Alternatively you can write it like this: Romance && !(Action || Horror)

Next time ask your questions in the proper thread 😉

  • Like 1
  • Agree 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...