
What I need is a flow that would be triggered by word in SMS, but I want the match to be case-sensitive (cause non case-sensitive passwords are a bad idea)
It seems to me that, assuming Android regex can check a case-sensitive match, it should be possible to check whether SMS text contains a case-sensitive pattern via Conditions facility.
So let's say the password is
AndreW_xX99
The SMS text is:
Hey, AndreW_xX99, check this out!
The trigger is obviously SMS Received
So, I need a condition to check whether sms_text contains the exact, case-specific pattern
AndreW_xX99
So that if SMS contains (for some reason) AndreW_xx99 or AndreW_Xx99, the flow would not proceed, and will only execute if AndreW_xX99 is encountered.
Problem:
I suck at regex

Would any resident magician help me out ?