Search results

  1. R

    Is something like this possible.. if([sms_number].length >= 5 AND [sms_number.length <= 6 AND != contacts){do this thing} ???

    Another potential solution would be ... If (sms_number.length >= 5 AND sms_number.length <=6 AND SMS_MESSAGE contains alpha numerics only (no $,.) {Do this thing} but as I said, my regex is horrible, I wouldn't be able to write it and worse yet, Regex formatting seems to be different then the...
  2. R

    Is something like this possible.. if([sms_number].length >= 5 AND [sms_number.length <= 6 AND != contacts){do this thing} ???

    Hello all, Is it possible to set an if statement to prevent the action from triggering unless the senders sms number is between 5 and 6 digits in length ?? I have a macro made that currently copies numeric OTPs (one time passwords) and tries to find and copy alpha numeric OTPs to the clipboard...
Top