Text Contains Case Sensitive Screen Reader On Screen in Doordash Dasher App

dashmacros

New member
I am a doordash driver trying to alert me when the dasher app screen has the string "Dash now". For some reason, I get the alert when the white text above the "Schedule" button has the string "Dash Now". Any help is appreciated.
 

Attachments

  • Screenshot_20231214_211936_MacroDroid.jpg
    Screenshot_20231214_211936_MacroDroid.jpg
    302.2 KB · Views: 22
  • Screenshot_20231214_211438_Google.jpg
    Screenshot_20231214_211438_Google.jpg
    27.5 KB · Views: 18
  • Screenshot_20231214_211030_Dasher.jpg
    Screenshot_20231214_211030_Dasher.jpg
    113.5 KB · Views: 19
Last edited:

LF0

Member
I have tested it on my device, and the case-sensitive feature is working fine.

If you don't want to receive notifications when the white text on a black background contains "Dash Now," you can try using a regular expression:

`\bDash now\b(?!\s)`

This means that it will only match when "Dash now" is a standalone word and there is no space after it. This should address your issue.
 

dashmacros

New member
I have tested it on my device, and the case-sensitive feature is working fine.

If you don't want to receive notifications when the white text on a black background contains "Dash Now," you can try using a regular expression:

`\bDash now\b(?!\s)`

This means that it will only match when "Dash now" is a standalone word and there is no space after it. This should address your issue.
 

dashmacros

New member
\b is word boundary
(?!\s) is negative lookahead or makes sure \s doesn't match
\s is any white space character

That's exactly what I needed!
 
Top