Entity-filter, Filter at part of state

I have a question i use the entity-filter to filter the senors about my garbage-pickup day.
The state of the sensor is: Tomorrow, 25-05-2019

But you see a date, so i have to change every time the value of the state to let them show the sensor.
So my question is, how can i filter only at tomorrow or today without adding the date?

Thank you!!

Make a separate template sensor that parses the word out.

sensor:
  - platform: template
    sensors:
      garbage_day:
        value_template: "{{ states('sensor.xxx').split(', ')[0] }}"

Thx voor you reply!
But i have 3 kind of bins. can i combine them to one template sensor?
Or do i have made 3 different templates ?

You won’t be able to parse them for the entity-filter if they are all in 1 template so it would be best to have 3 separate ones.