Search found 2 matches

by gmain
05 Jun 2013 21:49
Forum: User Help / Bug Reports
Topic: Check wether notification contains certain word (s)
Replies: 2
Views: 8933

Re: Check wether notification contains certain word (s)

Hey Martin, I had already written a code that checks the contents of a string, reading character by character to see if it contains the sequence of characters that I'm looking for (I guess the same method that the functions use to get the job done). It works, but using indexOf() is way easier! Thanks!
by gmain
05 Jun 2013 00:38
Forum: User Help / Bug Reports
Topic: Check wether notification contains certain word (s)
Replies: 2
Views: 8933

Check wether notification contains certain word (s)

Hi, I would like to filter notifications by checking if a notification title contains a certain word. I know that by using the following in an expression, I can check whether the WHOLE title is the word itself: title == "notificationtitle" I would like to know how to check if a notification title ev...