Line 12: |
Line 12: |
| ''' Else statement ''' | | ''' Else statement ''' |
| | | |
− | '''Else''' will only become available by selecting the '''If''' statement again and | + | '''Else''' will only become available by selecting the '''If''' statement again and then selecting the ‘Add else clause’ from the ‘Set Variable’ menu. |
− | select ‘Add else clause’ from the ‘Set Variable’ menu.
| |
| In case further constrains should be invoked ‘Add else/If clause’ or ‘Add else/If confirmed clause’ can be used. | | In case further constrains should be invoked ‘Add else/If clause’ or ‘Add else/If confirmed clause’ can be used. |
| | | |
Line 30: |
Line 29: |
| Means that the whole content of the string variable has to be equal to the whole set of typed characters. | | Means that the whole content of the string variable has to be equal to the whole set of typed characters. |
| </pre> | | </pre> |
− | ''''' Compatible with [https://macrodroidforum.com/wiki/index.php/Variables#Standard_Variable_Types Variables | String, Integer, Decimal, Boolean] (Boolean only in the compare values condition/constraints) '''''
| + | '' Compatible with [https://macrodroidforum.com/wiki/index.php/Variables#Standard_Variable_Types Variables | String, Integer, Decimal, Boolean] (Boolean only in the compare values condition/constraints) '' |
| <br> | | <br> |
| | | |
Line 38: |
Line 37: |
| Means that the content of the string variable has to be unequal (i.e. different) to the set of typed characters. | | Means that the content of the string variable has to be unequal (i.e. different) to the set of typed characters. |
| </pre> | | </pre> |
− | ''''' Compatible with [https://macrodroidforum.com/wiki/index.php/Variables#Standard_Variable_Types Variables | String, Integer, Decimal, Boolean] (Boolean only in the compare values condition/constraints) '''''
| + | '' Compatible with [https://macrodroidforum.com/wiki/index.php/Variables#Standard_Variable_Types Variables | String, Integer, Decimal, Boolean] (Boolean only in the compare values condition/constraints) '' |
| <br> | | <br> |
| | | |
Line 46: |
Line 45: |
| Means that the content of the string variable has to contain the whole set of typed character. For instance, enter the word information to match with a string variable containing the text: Here are the informations you asked for... | | Means that the content of the string variable has to contain the whole set of typed character. For instance, enter the word information to match with a string variable containing the text: Here are the informations you asked for... |
| </pre> | | </pre> |
− | ''''' Compatible with [https://macrodroidforum.com/wiki/index.php/Variables#String Variables | String ''''']
| + | '' Compatible with [https://macrodroidforum.com/wiki/index.php/Variables#String Variables | String ''] |
| <br> | | <br> |
| | | |
Line 54: |
Line 53: |
| Means that the content of the string variable has not to contain the typed text. | | Means that the content of the string variable has not to contain the typed text. |
| </pre> | | </pre> |
− | ''''' Compatible with [https://macrodroidforum.com/wiki/index.php/Variables#String Variables | String] '''''
| + | '' Compatible with [https://macrodroidforum.com/wiki/index.php/Variables#String Variables | String] '' |
| <br> | | <br> |
| | | |
Line 61: |
Line 60: |
| === ''' *''' === | | === ''' *''' === |
| <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> | | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> |
− | '''*''' stands for any number of character (from 0 to any, same as '.*' in Regex).
| + | * stands for any number of character (from 0 to any, same as '.*' in Regex). |
| </pre><br> | | </pre><br> |
| | | |
| === ? === | | === ? === |
| <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> | | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> |
− | '''?''' is for 1 and only 1 mandatory character (same as '.{1}' in Regex).
| + | ? is for 1 and only 1 mandatory character (same as '.{1}' in Regex). |
| </pre><br> | | </pre><br> |
| | | |
| * '''Tick the box '''Enter regular expression matching''' if the typed text follows Regex syntax, far more powerful than plain text with or without wildcards (for advanced users).''' | | * '''Tick the box '''Enter regular expression matching''' if the typed text follows Regex syntax, far more powerful than plain text with or without wildcards (for advanced users).''' |