...Any thoughts on the logged error "Could not evaluate expression 'left(notification_text, 17) = "[My Test Text Here]"'
This is part of a flow that is supposed to look for specific text in a Notification message and, should it be there, continue executing the flow. Unfortunately the flow exits on the error as outlined above. I program many things but I am a bit new to Automagic.
Samsung Note2
Android Jellybean
Automagic Beta
Parse Notification_Text
Moderator: Martin
Re: Parse Notification_Text
Hi,
You can compare two values with the operator ==.
Following expression should work:
You could also use function startsWith in this case:
Regards,
Martin
You can compare two values with the operator ==.
Following expression should work:
Code: Select all
left(notification_text, 17) == "[My Test Text Here]"
Code: Select all
startsWith(notification_text, "[My Test Text Here]")
Martin